Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/binocarlos/turboexpress

A quick way to get a node.js express website booted
https://github.com/binocarlos/turboexpress

Last synced: 11 days ago
JSON representation

A quick way to get a node.js express website booted

Awesome Lists containing this project

README

        

turboexpress
============

A quick way to get a node.js express website booted

```js

var Turbo = require('../src');

var webserver = Turbo({
port:80,
document_root:__dirname + '/../test/fixtures/www'
})

webserver.start(function(){

// yay we have a turbo express

})

```