Skip to content

Instantly share code, notes, and snippets.

@nax3t
nax3t / mongoose-paginate-with-express.md
Last active April 23, 2021 23:14
Express JS Pagination with Mongoose

Add Pagination to Posts Index

  • Seed some post data
    • Install faker npm i -S faker
    • Create a seeds.js file in the root directory /surf-shop and open it
    • Require faker const faker = require('faker');
    • Require Post model const Post = require('./models/post');