Home > Net >  How to build my express backend for production?
How to build my express backend for production?

Time:06-30

I wrote an Express Server. How can I build it now to deploy it on a WebApp? I don't have any build scripts in the project..

CodePudding user response:

Don't you have any script in your package.json ? Should be something like "start": "node ."

  • Related