Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 

Repository files navigation

express-query-pagination

No frills skip/limit middleware.

Installation

npm install --save express-query-pagination

Usage

Mount it in your router:

app.get('/api/items', require('express-query-pagination'), ctrl);
`?skip=10`          => res.locals.skip === 10
`?skip=10&limit=10` => res.locals.skip === 10 && res.locals.limit === 10
`?p=2`              => res.locals.skip === 10 && res.locals.limit === 10
`?p=3&limit=20`     => res.locals.skip === 40 && res.locals.limit === 20

License

Copyright (c) 2016 Marius Craciunoiu. Licensed under the MIT license.

About

No frills skip/limit middleware.

Resources

Stars

0 stars

Watchers

1 watching

Forks

Releases

Packages

Used by

Contributors

Languages