https://github.com/tsmean/mongo-nest
https://github.com/tsmean/mongo-nest
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/tsmean/mongo-nest
- Owner: tsmean
- Created: 2017-10-12T18:35:59.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-10-12T18:36:36.000Z (almost 9 years ago)
- Last Synced: 2025-05-31T18:37:08.689Z (about 1 year ago)
- Language: TypeScript
- Size: 3.91 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# MongoDB Module
This is a database layer for a MongoDB written in TypeScript.
The `MongoConnector` is responsible for setting up a connection with
the database. This could either be a remote or a local mongo instance.
The `MongoDAO` is the Database-Access-Object. It provides CRUD
(create-read-update-delete) access methods.
The `mongo.module.ts` is a file related to the NEST framework.
It straps together the components and exports the ones necessary for
other modules (i.e. the public API).
# mongo-nest