🚨 Shai-Hulud Strikes Again:834 Packages Compromised.Technical Analysis →
Socket
Book a DemoInstallSign in
Socket

shrinkroute

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

shrinkroute

Easy named routes for Express.

latest
Source
npmnpm
Version
0.3.3
Version published
Weekly downloads
1
Maintainers
1
Weekly downloads
 
Created
Source

Shrinkroute

Build Status NPM version Dependency Status Coverage Status

Named and nested routes for Express 3+, with URL building support. Helps you in achieving DRY routes!

Easy as that:

var shrinkr = shrinkroute( app, {
    "user": {
        path: "/user/:id?",
        get: showOrListUsers,
        post: [ requireAuthentication, createUser ],
        put: [ requireAuthentication, updateUser ]
    }
});

// in your routes...
function createUser( req, res, next ) {
    User.create(..., function( err, userId ) {
        // redirects to /user/1 (or any other userId...)
        res.redirect( req.buildUrl( "user", { id: userId } ) );

        // if full URLs are needed, try below - redirects to http://foobar.com/user/1
        res.redirect( req.buildFullUrl( "user", { id: userId } ) );
    });
}

// or views...
<a href="<%= url( "user", { id: 1 }) %>">User profile</a>
<a href="<%= fullUrl( "user", { id: 1 }) %>">User profile</a>

ATTENTION: Version 0.3.0 automatically adds the middleware responsible for providing URL builders in the view. When upgrading from previous versions, remove app.use( shrinkr.middleware ); line.

Nested routes

Nested routes are separated by an character, which is by default . (you may customize it if you want). When you set nested routes, they'll inherit their parent's route. For example:

shrinkroute( app, {
    "admin": {
        path: "/admin"
    },
    "admin.users": {
        path: "/users"
    }
});

This will end up in a route named admin which map to /admin, and another route named admin.users which map to /admin/users.

URL Builders in the view and in the request

The following functions are automatically available to you in every route set by Shrinkroute:

  • req.buildUrl and res.locals.url - builds paths for a route. The same as using shrinkr.url().
  • req.buildFullUrl and res.locals.fullUrl - builds full URLs for a route. The same as using shrinkr.fullUrl().

Installation

Install Shrinkroute via NPM:

npm install shrinkroute

API

[new] shrinkroute( [app][, routes][, separator = "."] )

Returns a new instance of Shrinkroute. This is a shortcut for the following:

var shrinkr = shrinkroute();
shrinkr.app( app );
shrinkr.separator( separator );
shrinkr.route( routes );

.app( [app] )

Get or set the app of this Shrinkroute instance. If setting the app, the following things will be available from now on:

  • app.shrinkroute - the Shrinkroute instance
  • req.route.name - the name of the matched route

.route( name[, route] )

Get or set a route by its name. When setting the route, the route path must be passed as route.path.

.route( name, path, route )

Set a route.

.route( [routes] )

Get all routes or set various routes at once.

.separator( [separator] )

Get or set the routes namespace separator. Useful for when using nested routes.

.url( name[, params][, append] )

Build the URL for a route. If the route path has parameters in the Express style (:param), they must be passed as a object in the params argument:

shrinkr.url( "user", {
    id: 1
});

If they're not passed, the returned URL will be blank. However, if you mark it as optional (:param?), it'll not be required.

Parameters passed in the params object that are not defined in the route will be appended to the query string, unless the append argument is falsy.

shrinkr.url( "users", {
    name: "foo"
});

// => /users?name=foo

shrinkr.url( "users", {
    name: "foo"
}, false);

// => /users

.fullUrl( name[, params][, append] )

Builds full URLs for a given route that include protocol, host and port. Respects the same rules as .url().

req.buildFullUrl( "users", {
  name: "foo"
});

// => http://foobar.com/users?name=foo

Testing

Shrinkroute is tested with Mocha. Inside the project root, run:

npm install
npm test

This will do the job for you!

License

MIT

Keywords

express

FAQs

Package last updated on 14 Aug 2014

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