Reputation: 1386
I am kind of new to Node.js but I built an application and am pretty happy with it. I was wondering how would I go about uploading my Node.js application to an FTP server? Is it even possible to do this?
Upvotes: 4
Views: 16012
Reputation: 944297
A Node.JS application is just a collection of files. You can upload them to another computer using FTP just like any other files.
That probably isn't what you are trying to ask though.
If you want to host a website built as a Node.JS application then you need to be using hosting that either:
Such hosting will generally give you (at a minimum) shell access (via SSH) which you can use to run the Node.JS application.
Upvotes: 12