Hello.
If you try to post empty data via API, not React client application, the application will crash. The particular line in problem is in post.controller.js file, where you check if name, title or content are empty. The line:
res.status(403).end();
should abort execution. Possible solution could be:
return res.status(403).end();
but it raises eslint consistent-return warning.