express-mongoose-es6-rest-api icon indicating copy to clipboard operation
express-mongoose-es6-rest-api copied to clipboard

:collision: A boilerplate application for building RESTful APIs Microservice in Node.js using express and mongoose in ES6 with code coverage and JsonWebToken Authentication

Results 70 express-mongoose-es6-rest-api issues
Sort by recently updated
recently updated
newest added

City Document : { "_id" : ObjectId("555ec317e6e8ce4e0d3c2541"), "state" : ObjectId("54f91ea29f2e20e67d61ba6c"), "deleted" : false, "created" : ISODate("2015-05-22T05:48:07.831Z"), "description" : "", "name" : "Hydrabad", "__v" : 0 } State Document: { "_id"...

https://github.com/nodkz/mongodb-memory-server https://github.com/graphql-compose/graphql-compose-mongoose/commit/7a6ac2de747d14281f9965f418065e97a57cfb37

Some reasons on top of mind: - better speed - built-in test coverage - built-in matcher (similar language to chai) I'll update with a PR once this is done

I need to setup serverless in my API code.Please help me https://serverless.com/blog/serverless-express-rest-api/#converting-an-existing-express-application

hi guys, I was wondering if anyone has used vscode to debug this package? can you share the settings? I tried bunch of different ways, but can't get it working........

gulp serve ends with a syntax error on node modules/keypress/index.js with an invalid number events.js:163 throw er; // Unhandled 'error' event ^ SyntaxError: /home/kisor/OnGoingProjects/hotspot/hotspot_api/server/node_modules/keypress/index.js: Invalid number (374:30) 372 | var...

During development it is useful to see the full error reported by mongoose. E.g. you forget to assign a required parameter. At the moment I only get `ValidationError: MyModel validation...

How to invalidate or black list token on logout?

It may be cool to set up the example user tests (for creating) with http://chaijs.com/api/bdd/#method_deep so you don't need to test every attribute.

Line 67 of code file ./config/express.js: `const err = new APIError('API not found', httpStatus.NOT_FOUND);` put following code after the above: `console.log(err instanceof APIError);` // output false To my understanding, the...