https://github.com/survi218/node-mongoose
Mongoose ODM and creating schemas and interacting with the MongoDB database
https://github.com/survi218/node-mongoose
assert bson-document json-data models mongoose mongoose-currency mongoose-model mongoose-schema nodejs nodejs-modules npm odm rest-api schemas
Last synced: 4 months ago
JSON representation
Mongoose ODM and creating schemas and interacting with the MongoDB database
- Host: GitHub
- URL: https://github.com/survi218/node-mongoose
- Owner: survi218
- Created: 2017-06-04T23:51:26.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-06-05T00:39:36.000Z (over 8 years ago)
- Last Synced: 2025-03-05T21:57:38.612Z (7 months ago)
- Topics: assert, bson-document, json-data, models, mongoose, mongoose-currency, mongoose-model, mongoose-schema, nodejs, nodejs-modules, npm, odm, rest-api, schemas
- Language: JavaScript
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# node-mongoose
- Explore the Mongoose ODM and learn about creating schemas and interacting with the MongoDB database using Mongoose methods.
- Install Mongoose ODM and connect to a MongoDB Server
- Create Mongoose Schemas
- Perform Database operations with Mongoose methods
# Installing Mongoose
- Create a folder named node-mongoose and move into the folder.
- In this folder, install Mongoose by typing the following at the prompt:
``````
npm install mongoose --save
npm install assert --save
``````