데이터를 한번에 가져오는게 아니라 나눠서 가져오는것(게시판이나 인스타 게시물) 모듈 설치 npm install mongoose-paginate-v2 model에 내용추가 const mongoosePaginate = require('mongoose-paginate-v2') exampleSchema.plugin(mongoosePaginate) Controller에 내용추가 const index = (req, res, next) => { Example.paginate({}, { page: req.query.page, limit: req.query.limit }) .then(response => { res.json({ response }) }) .catch(error => { res.json({ message:..