0.0.6 • Published 11 years ago

turboexpress v0.0.6

Weekly downloads
7
License
-
Repository
github
Last release
11 years ago

turboexpress

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

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

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

webserver.start(function(){
	
	// yay we have a turbo express
	
})