UNPKG

789 BMarkdownView Raw
1# Simple Server
2
3Simple Server (sise) allows you to easily get a node.js static file server up and running anywhere anytime.
4
5
6## Installing
7
8
91. [Install Node.js](https://github.com/balupton/node/wiki/Installing-Node.js)
10
111. Install CoffeeScript
12
13 npm -g install coffee-script
14
151. Install Simple Server
16
17 npm -g install simple-server
18
19
20## Using
21
22To get your `public` folder up and running on `http://localhost:3000` simply type the following into terminal:
23
24 sise public 3000
25
26The first argument is the folder you want to serve, and the second argument is the port to serve from :)
27
28
29## History
30
31- v0.1 June 3, 2011
32 - Initial commit
33
34
35## License
36
37Licensed under the [MIT License](http://creativecommons.org/licenses/MIT/)
38Copyright 2011 [Benjamin Arthur Lupton](http://balupton.com)