2
I am starting my studies in Nodejs and need to know what the main project standards for Web Development in Nodejs.
2
I am starting my studies in Nodejs and need to know what the main project standards for Web Development in Nodejs.
Browser other questions tagged node.js express
You are not signed in. Login or sign up in order to post.
Depends, speak of Web? Because Node.js is a tool that serves several different purposes, not just Web.
– Guilherme Nascimento
Here is a very cool article about the main Design Patterns. http://nomadev.com.br/node-js-design-patterns-fundamentais-padr%C3%B5es-de-projeto/
– Adriano de Azevedo
I edited the question. The focus is web development !
– alexjosesilva
Node.js does not have specific web standards, the default one is Express, which uses Middleware which has a facilitator tool called express-Enerator, of course there must be implementations like MVC to use in Web projects, but has no direct connection to Node.js (although they obviously make use of it), I believe that the main one is Middleware itself and even if you have some framework that uses Node.js for web besides Express it is likely that also make use of Express as a base or if you do not do it is probably not so popular. This might help: https://answall.com/tags/express/info
– Guilherme Nascimento