programking
programking

Reputation: 1386

How to upload Node.js Application to FTP server?

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

Answers (1)

Quentin
Quentin

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:

  • Explicitly supports Node.JS (Google finds this list) or
  • Gives you full admin access (such as a virtual or dedicated server)

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

Related Questions