1.0.4 • Published 5 years ago
damless-mongo v1.0.4
damless-mongo
Features
REST api
| Method | Param | DamLess method |
|---|---|---|
| GET | /:id | httpFindOne |
| GET | /? | httpFind |
| POST | httpInsertOne | |
| PUT | /:id | httpSaveOne |
| PATCH | /:id | httpUpdateOne with $set |
| DELETE | /:id | httpDeleteOne |
Create an api
const { Http } = require("damless-mongo");
class Api extends Http {
//giveme is the dependency injection service used by damless
constructor(giveme) {
super(giveme, "<collectionName>");
};
...
}Http methods
| Method | Description |
|---|---|
| httpFindOne | |
| httpFind | |
| httpInsertOne | |
| httpInsertMany | |
| httpSaveOne | |
| httpUpdateOne | |
| httpSaveMany | |
| httpUpdateMany | |
| httpDeleteOne | |
| httpDeleteMany | |
| httpCount | |
| httpAggregate |
Stream methods
| Method | Description |
|---|---|
| saveOne | |
| save | |
| insertOne | |
| insert | |
| updateOne | |
| update | |
| replaceOne | |
| deleteOne | |
| delete | |
| findOne | |
| find | |
| aggregate | |
| count |
Mongo api methods
| Method | Description |
|---|---|
| mongoInsertOne | |
| mongoInsertMany | |
| mongoAggregate | |
| mongoBulkWrite | |
| mongoCreateIndex | |
| mongoCreateIndexes | |
| mongoCount | |
| mongoCreateIndexes | |
| mongoDeleteOne | |
| mongoDeleteMany | |
| mongoDistinct | |
| mongoDrop | |
| mongoDropIfExists | |
| mongoDropIndex | |
| mongoDropIndexes | |
| mongoFindOne | |
| mongoFind | |
| mongoFindOneAndDelete | |
| mongoFindOneAndReplace | |
| mongoFindOneAndUpdate | |
| mongoGeoHaystackSearch | |
| mongoGeoNear | |
| mongoGroup | |
| mongoMapReduce | |
| mongoReplaceOne | |
| mongoSave | |
| mongoUpdateOne | |
| mongoUpdateMany |
Cutomize your api
const { Http } = require("damless-mongo");
const { promisify } = require("util");
const stream = require("stream");
const pipeline = promisify(stream.pipeline);
class Api extends Http {
// giveme is the dependency injection service used by damless
constructor(giveme) {
super(giveme, "<collectionName>");
};
// override the default httpFind an use Crud primitives
async httpFind(context, stream, headers) {
// get a mongo cursor
const cursor = this.findWords(context.query.q);
await pipeline(
cursor,
stream
);
}
}Add the mongo connection string in damless.json
{
"mongo": {
"connectionString": "mongodb://localhost:27017/database"
},
}Inject damless-mongo service
{
"services": [
{ "name": "mongo", "location": "damless-mongo" }
]
}Or in javascript
const DamLess = require("damless");
const damless = new DamLess();
damless.inject("mongo", "damless-mongo");Installation
$ npm install damless-mongoTest
To run our tests, clone the damless-mongo repo and install the dependencies.
$ git clone https://github.com/BenoitClaveau/damless-mongo --depth 1
$ cd damless-mongo
$ npm install
$ mongod --dbpath ./data/db
$ node.exe "../node_modules/mocha/bin/mocha" tests1.0.4
5 years ago
1.0.3
5 years ago
1.0.2
5 years ago
1.0.1
5 years ago
1.0.0
5 years ago
0.4.2
5 years ago
0.4.1
6 years ago
0.4.0
6 years ago
0.3.3
6 years ago
0.3.2
6 years ago
0.3.1
6 years ago
0.3.0
7 years ago
0.2.4
7 years ago
0.2.3
7 years ago
0.2.2
7 years ago
0.2.1
7 years ago
0.2.0
7 years ago
0.1.0
7 years ago
0.0.30
7 years ago
0.0.29
7 years ago
0.0.28
7 years ago
0.0.27
7 years ago
0.0.26
7 years ago
0.0.25
7 years ago
0.0.24
7 years ago
0.0.23
7 years ago
0.0.22
7 years ago
0.0.21
7 years ago
0.0.20
7 years ago
0.0.19
7 years ago
0.0.18
7 years ago
0.0.17
7 years ago
0.0.16
7 years ago
0.0.15
7 years ago
0.0.14
7 years ago
0.0.13
7 years ago
0.0.12
7 years ago
0.0.11
7 years ago
0.0.10
7 years ago
0.0.9
7 years ago
0.0.8
7 years ago
0.0.7
7 years ago
0.0.6
7 years ago
0.0.5
7 years ago
0.0.4
7 years ago
0.0.3
7 years ago
0.0.2
8 years ago
0.0.1
8 years ago