amuck-landowner

How to configure FOAAS

HN-Matt

New Member
Verified Provider
If you're new to Node.js, the first thing you may want to do is configure FOAAS. Here is how to do that in Ubuntu 14.10!

1. Install Node.js and Node Package Manager.

apt-get install nodejs
apt-get install npm2. Debian has some misnaming issues so install the magical 'legacy' package or make some symlinks (see https://github.com/nodejs/node-v0.x-archive/issues/3911).

apt-get install nodejs-legacy3. Download, install and start FOAAS.

wget https://github.com/tomdionysus/foaas/archive/master.zip
unzip master.zip
cd foaas-master
npm install
npm start &4. The output will look something like this:

[1] 19690
[...]

FOAAS v0.1.8 Started on port 50005. Try it out (replace '1.2.3.4' with the IP address of your VPS): http://1.2.3.4:5000/off/Ellipsis Node/vpsBoard
 
Last edited by a moderator:
Top
amuck-landowner