DEV Community

Discussion on: How you can build your own web framework for Node.js

Collapse
 
softchris profile image
Chris Noring

Node.js is a runtime. There are many great web frameworks Express, Koa, Hapi, Fastify, Nest. Most people host their apps in the Cloud nowadays like Heroku, Azure, AWS. They are secure to a point. You still need to write secure code and care about handling auth in a good way, like with JWT for example. There are still issues like Cross-site request forgery for example that you need to handle regardless if you go with .NET or Node or some other runtime. As for running Node.js in production, here's a great article by my colleague Burke freecodecamp.org/news/you-should-n...