[Vuejs]-Is it possible to use pure node js without using express as a back-end for vue js?

2👍

Yes, it’s possible to develop a whole website/web app without an extra framework like express. The thing is that you have to manage so many things on your own.

Your web app/website code became harder to read as you progress in NodeJS. URL routing is complex than express. So, You have to write a bunch of switch cases.

It’s possible to use NodeJS alone. But, you have to write more code that is provided by express or any other framework.

Leave a comment