tower-route

0.1.0 • Public • Published

Tower Route

Tiny route component for client and server.

Installation

node.js:

$ npm install tower-route

browser:

$ component install tower/route

Example

var route = require('tower-route');
 
route('/welcome', function(context, next){
  context.render({ title: 'Hello World' });
});

Or with the action method:

route('/welcome')
  .action(function(context, next){
    context.render({ title: 'Hello World' });
  });

You can also name them (makes it so you don't have to mess with url strings in code, to redirect/transition/etc.:

route('new-customer', '/welcome');

License

MIT

Readme

Keywords

none

Package Sidebar

Install

npm i tower-route

Weekly Downloads

0

Version

0.1.0

License

none

Last publish

Collaborators

  • viatropos