fast-http

0.1.3 • Public • Published

Fast Http

Build Status NPM version

Installation

npm install fast-http  --save

Usage

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.

How to use

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);

CLI

NPM version

Installation:

npm install fast-http-cli  -g

Options:

-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

Readme

Keywords

Package Sidebar

Install

npm i fast-http

Weekly Downloads

7

Version

0.1.3

License

MIT

Last publish

Collaborators

  • cedced19