1.0.4 • Published 8 years ago

pathlink v1.0.4

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

Pathlink

Installation

npm install --save pathlink

Usage

/* Config URLs */
var pathlink = require('pathlink');

pathlink.config({
  home: "/",
  posts: "/posts",
  post: "/posts/:id",
  comment: "/posts/:post_id/comments/:comemnt_id"
});

/* Get URL */
var pathlink = require('pathlink');

pathlink.get('home'); => "/"
pathlink.get('post', {id: 3}); => "/posts/3"
pathlink.get('comment', {post_id: 3, comment_id: 5}); => "/posts/3/comments/5"
pathlink.get('posts', null, {post_id: 5}); => "/posts?post_id=5"
pathlink.get('posts', null, {post_id: null}); => "/posts"
1.0.4

8 years ago

1.0.3

8 years ago

1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago