add.onclick = function() {
var div = '<div id="a"><p class="my">текст</p></div>'
new_b.insertAdjacentHTML('beforeend', div);
};
router.post('/demo', jwt({ secret: process.env.SECRET }),Authentication.secret)
exports.secret = function (req, res) {
User.findById(req.user.sub, function (err, user) {
// добавлю еще маленько хорошей практики обработки ошибок:
if (err) {
console.log('ERROR')
res.send('ERROR')
return;
}
res.send({
eee: req.user,
hi: 'SECRET test authorization of registered user'
})
})
}
{
output: {
filename: 'out_file.js',
path: 'out/path',
library: 'тут что угодно',
libraryTarget: 'commonjs2'
},
target: 'node' //чтоб нативные модули ноды не полифилил
}