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

I'll update this ticket with the PR number once this is done

Hey guys, I'm currently studying nodejs, and this boilerplate is helping me a great deal. But I got stuck in one thing. See the code below to update an user...

``` TypeError: Cannot read property 'getAllInfo' of undefined at /Users/gen4/Gits/tw/server/node_modules/express-winston/index.js:134:47 at Layer.handle_error (/Users/gen4/Gits/tw/server/node_modules/express/lib/router/layer.js:71:5) at trim_prefix (/Users/gen4/Gits/tw/server/node_modules/express/lib/router/index.js:310:13) at /Users/gen4/Gits/tw/server/node_modules/express/lib/router/index.js:280:7 at Function.process_params (/Users/gen4/Gits/tw/server/node_modules/express/lib/router/index.js:330:12) at next (/Users/gen4/Gits/tw/server/node_modules/express/lib/router/index.js:271:10) at Layer.handle_error (/Users/gen4/Gits/tw/server/node_modules/express/lib/router/layer.js:67:12) at trim_prefix (/Users/gen4/Gits/tw/server/node_modules/express/lib/router/index.js:310:13)...

Has anyone done this already? As we're not using mobile numbers at our product but passwords, we'd like to change that but not sure how to approach to that.

Hey guys, I've tried to deploy a new api using this wonderful boilerplate and seems that the package.json have been changed. Yarn build do not work anymore; is not found....

Hi guys, Thanks for the project! Really helpful to get started. Quick one though, have you consider adding "Flow" for static type checking? Thanks!

I tried to follow commands to deploy but it didn't work out. Config validation error : child MONGO_HOST fails. because ["Mongo_host is required"]

I am trying to throw 422 error if validation fails in Joi validation with proper message

I can't obtain form-data of a post request. req.body is empty or undefined. I see in express.js `app.use(bodyParser.urlencoded({ extended: true }));` It seems to be ok but I don't know....

in config/express.js : ```javascript else if (!(err instanceof APIError)) { const apiError = new APIError(err.message, err.status, err.isPublic); return next(apiError); } ``` is supposed to catch errors that aren't instanceof APIError...