Can Expressjs be used in production?

Asked

Viewed 65 times

0

I recently saw a course where Expressjs was used for backend testing in JSON for an application and I was amazed, but I came up with several questions: Could it be used in production? Can the most commonly used db and backend technologies be an alternative? Is the performance good? How it works exactly?

1 answer

1


Why wouldn’t it be? Express is a great tool for this, although there are more advanced options like Sails (which is made based on Express).

If you are starting, use Express; there will be nothing bad.
The only thing is that there is no specific model to create the applications, that is, you can create as you like (object orientation, via functions, [...]), which will work. This, in some cases, can end up disorganizing your code.

If you are looking for an MVC framework, I suggest you use Sails.

Sails

Browser other questions tagged

You are not signed in. Login or sign up in order to post.