Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 689 Bytes

README.md

File metadata and controls

18 lines (13 loc) · 689 Bytes

{proto-server}

CoffeeScript flavored node.js file-server for quick prototyping.

How to run it

  1. download/install node.js
  2. cd to your projects directory (any will do, /home/projects eg.) cd /home/projects
  3. clone the project from github git clone https://github.com/SamiPussinen/proto-server.git
  4. change to the new directory cd proto-server
  5. install dependencies: npm install
  6. run it: just node server.js or node server.js 1337 to specify the port. The default port is 8080.
  7. open http://localhost:8080 (or whatever port you specified) in a browser.
  8. Hopefully you see a message 'It works!'

Credits

SamiPussinen - Initial commit