li
Parse the Links header format and return a javascript object.
Last updated 8 years ago by jfromaniello .
MIT · Repository · Bugs · Original npm · Tarball · package.json
$ cnpm install li 
SYNC missed versions from official npm registry.

Build Status

Parse and format Link header according to RFC 5988.

Install

$ npm install li

Also works with bower, component.js, browserify, amd, etc.

Usage

Parse a Link header:

var li = require('li');
var someLinksHeader = '</api/users?page=0&per_page=2>; rel="first", ' +
                      '</api/users?page=1&per_page=2>; rel="next", ' +
                      '</api/users?page=3&per_page=2>; rel="last"';

console.log(li.parse(someLinksHeader));

// This will print:
// {
//   first: '/api/users?page=0&per_page=2',
//   next: '/api/users?page=1&per_page=2',
//   last: '/api/users?page=3&per_page=2'
// }

Generate a Link header as follow with stringify:

var linksObject = {
  first : '/api/users?page=0&per_page=2',
  next  : '/api/users?page=1&per_page=2',
  last  : '/api/users?page=3&per_page=2',
};

console.log(li.stringify(linksObject);

// This will print the string:
// </api/users?page=0&per_page=2>; rel="first",
// </api/users?page=1&per_page=2>; rel="next",
// </api/users?page=3&per_page=2>; rel="last"

Testing

$ npm test

License

MIT 2014 - JOSE F. ROMANIELLO

Current Tags

  • 1.3.0                                ...           latest (8 years ago)

5 Versions

  • 1.3.0                                ...           8 years ago
  • 1.2.1                                ...           9 years ago
  • 1.1.0                                ...           9 years ago
  • 1.0.1                                ...           11 years ago
  • 1.0.0                                ...           12 years ago
Maintainers (1)
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 7
Dependencies (0)
None
Dev Dependencies (2)
Dependents (2)

Copyright 2013 - present © cnpmjs.org | Home |