Skip to content

An npm package and micro framework for extremely lightweight JSON web request/response handling with caching for heavily trafficked services

Notifications You must be signed in to change notification settings

broadstreetads/i80

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

i80

A very basic microframework for high volume web services

Example

var i80 = require('i80');

var handlers = {
  foo: function (request, response, done) {
    // do stuff
    done({message: 'hello world'});
  }
}

i80.start({
  port: 80,
  handlers: handlers
});

GET http://hostname/foo

{"message": "hello world"}

About

An npm package and micro framework for extremely lightweight JSON web request/response handling with caching for heavily trafficked services

Resources

Stars

Watchers

Forks

Packages

No packages published