-2

I am currently developing a NodeJS project where I need to run it locally on a client environment The project is as follows enter image description here

my question is: is there a way to copy the deployed project to the client server and run it without even installing nodejs or npm on the client server?

also note I can't deploy it to heroku or azure or other services for security purposes as the client may not have access to those services so I only need to deploy it locally

thank you

Sora
  • 2,465
  • 18
  • 73
  • 146

1 Answers1

-1

No, You will need to have NodeJS installed on the server. You can try to create e docker image that uses NodeJS for easier deployments.