npm install fast-http --save
Create a tiny web server which does not support the MVC pattern,for simple Node.js app.
Because I copy the same code in all my projects.
Basic usage:
var server = require('fast-http'),
port = 80,
root = __dirname,
wordy = true;
server(port, root, wordy);
// __dirname is the name of the directory that the currently executing script resides in.The third argument specified if it'll log all request.
If you want to use it with socket.io:
var server = require('fast-http')(80, __dirname, false);
var io = require('socket.io').listen(server);Installation:
npm install fast-http-cli -gOptions:
-h, --help output usage information
-V, --version output the version number
-p, --port [number] specified the port
-w, --wordy specified if it'll log all request
Use:
fast-http