Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Mongoose | 25,473 | 181,203 | 11,412 | 2 days ago | 758 | September 14, 2022 | 286 | mit | JavaScript | |
MongoDB object modeling designed to work in an asynchronous environment. | ||||||||||
Node Elm | 11,215 | a year ago | 62 | gpl-2.0 | JavaScript | |||||
基于 node.js + Mongodb 构建的后台系统 | ||||||||||
Node Express Boilerplate | 5,180 | 20 days ago | 10 | September 28, 2020 | 75 | mit | JavaScript | |||
A boilerplate for building production-ready RESTful APIs using Node.js, Express, and Mongoose | ||||||||||
Node Express Mongoose Demo | 5,054 | 1 | a month ago | 1 | January 18, 2016 | 3 | mit | JavaScript | ||
A simple demo app using node and mongodb for beginners (with docker) | ||||||||||
Bulletproof Nodejs | 4,954 | 3 months ago | 68 | mit | TypeScript | |||||
Implementation of a bulletproof node.js API 🛡️ | ||||||||||
Builderbook | 3,426 | 2 months ago | 69 | mit | JavaScript | |||||
Open source web application to learn JS stack: React, Material-UI, Next.js, Node.js, Express.js, Mongoose, MongoDB database. | ||||||||||
Saas | 3,322 | a month ago | 11 | mit | TypeScript | |||||
Build your own SaaS business with SaaS boilerplate. Productive stack: React, Material-UI, Next, MobX, WebSockets, Express, Node, Mongoose, MongoDB. Written with TypeScript. | ||||||||||
Express Mongoose Es6 Rest Api | 2,896 | 3 years ago | 1 | September 03, 2016 | 68 | mit | JavaScript | |||
:collision: A boilerplate application for building RESTful APIs Microservice in Node.js using express and mongoose in ES6 with code coverage and JsonWebToken Authentication | ||||||||||
Thal | 2,268 | 2 years ago | mit | JavaScript | ||||||
Getting started with Puppeteer and Chrome Headless for Web Scraping | ||||||||||
Lad | 2,212 | 2 | 1 | 2 months ago | 39 | April 27, 2022 | 12 | mit | JavaScript | |
Node.js framework made by a former @expressjs TC and @koajs team member. Built for @forwardemail, @spamscanner, @breejs, @cabinjs, and @lassjs. |
GraphQL server with Mongoose (MongoDB) and Node.js
Example GraphQL query:
user(id: "1") {
name
friends {
name
}
}
Example response:
{
"data": {
"user": {
"name": "John Doe",
"friends": [
{
"name": "Friend One"
},
{
"name": "Friend Two"
}]
}
}
}
Example GraphQL mutation:
mutation updateUser($userId: String! $name: String!) {
updateUser(id: $userId name: $name) {
name
}
}
You need iojs
or >= Node.js
v0.12.x
npm install
npm run seed
npm start
npm run client
npm test