[Vuejs]-How to build an vue and and node app for hosting in the server?

1๐Ÿ‘

I think building an application node.js and view.js is good for small applications.

For larger applications, I advise you to create an REST API in node (with express.js for example). it will be easier to maintain because the two codes will be separated and a big advantage is that if your API remains open you can call it with another interface (mobile application for example).

Leave a comment