CoffeeScript flavored node.js file-server for quick prototyping.
- download/install node.js
- cd to your projects directory (any will do, /home/projects eg.)
cd /home/projects
- clone the project from github
git clone https://github.com/SamiPussinen/proto-server.git
- change to the new directory
cd proto-server
- install dependencies:
npm install
- run it: just
node server.js
ornode server.js 1337
to specify the port. The default port is 8080. - open http://localhost:8080 (or whatever port you specified) in a browser.
- Hopefully you see a message 'It works!'
SamiPussinen - Initial commit