Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

biggie-router

Package Overview
Dependencies
Maintainers
1
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

biggie-router

A lightweight extensible HTTP router

  • 1.2.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
13
increased by550%
Maintainers
1
Weekly downloads
 
Created
Source

Biggie-router is a high performance, extendable router for use in frameworks and applications. It draws inspiration from several popular open source frameworks and libraries, such as jQuery and Sinatra.

License

Biggie-router is released under MIT, in hope you find this software useful.

Installing it

The fastest way to get started with biggie-router is to install it via npm.

$ npm install biggie-router

Otherwise git clone, or download the repository and place the contents of the lib directory where needed.

Usage

Here are a few basic examples.

Hello world, that listens on port 8080:

var http   = require('http')
var Router = require('biggie-router');
var server = http.createServer()
var router = new Router(server);

router.bind(function (request, response, next) {
  next.sendBody(200, "Hello World!");
});

server.listen(8080);

Basic routing + chaining. Responds with hello world on root and /index.html get requests.

Requests that fall through (don't match any conditions) get passed to the next route and are sent a 404.

var Router = require('biggie-router');
var router = new Router();

router.get('/').get('/index.html')
      .bind(function (request, response, next) {
  next.sendBody(200, "Hello World!");
});

router.bind(function (request, response, next) {
  next.sendBody(404, 'Resource "' + request.url + '" not found.');
});

router.listen(8080);

Modules are functions that return a function, enabling you to do per-route setup. No modules are supplied with biggie-router, however middleware use the same pattern as connect (or express); so generic connect middleware should also be compatible with biggie. The npm middleware module is also compatible.

Usage is as follows:

var middleware = require('middleware');

router.get('/').bind(middleware.sendfile('public/'));

router.post('/users').bind(api('users', 'create'));

FAQs

Package last updated on 12 Jun 2013

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc