1.0.1 • Published 8 years ago

simplee v1.0.1

Weekly downloads
4
License
MIT
Repository
github
Last release
8 years ago

Simple Express

This is a node framework I am building as a learning exercise. I intend to eventually publish it on npm.

To build an http server with this module, write var simplee = require('simplee'); var app = simplee();

app.setGET('/', function(request, response){ //your functionality here }) app.setPUT('/', function(request, response){ //your functionality here }) app.setPOST('/', function(request, response){ //your functionality here }) app.setDEL('/', function(request, response){ //your functionality here })

app.listen(port) will tell the router to create a server listening at the specified port