fullstack-apollo-express-postgresql-boilerplate icon indicating copy to clipboard operation
fullstack-apollo-express-postgresql-boilerplate copied to clipboard

💥 A sophisticated GraphQL with Apollo, Express and PostgreSQL boilerplate project.

Results 44 fullstack-apollo-express-postgresql-boilerplate issues
Sort by recently updated
recently updated
newest added

* use Object.values to get a more meaningful `model` var and associate it if it has an associate field.

Hello, - Packages updated. - Morgan package moved as non devDependencies. Regards,

modern node runtimes have full support for async await. node 10x LTS has this. This project uses node 10 already. Remove babel dependency.

As workaround I have found: `heroku config:set NPM_CONFIG_PRODUCTION=false` which makes it possible to install dev dependencies. It's not a long term solution, because usually the server shouldn't be started in...

I am looking for people who are able to migrate this boilerplate project to different tech stacks. If you want to collaborate on this, please reach out to me on...

enhancement
help wanted

Not able to deploy on heroku, Did anyone tried?

npm run scripting syntax is slightly different on Windows due to the underlying shell being used. Usually the default is cmd.exe (the old DOS), even though it is possible to...

bug
Windows

The following functions caused me problems: ``` const toCursorHash = string => Buffer.from(string).toString('base64'); const fromCursorHash = string => (Buffer.from(string, 'base64').toString('utf-8'); ``` Apparently the createdAt object passed to `toCursorHash()` was not...

bug
Windows

If anyone runs into this problem as I did today with Bcrypt while deploying to Heroku, this may help you. Locally I am using Node version 10.11.0, but because I...

If you run into any problems with bcrypt on Windows while installing it, you can try out a substitute called [bcrypt.js](https://github.com/dcodeIO/bcrypt.js). It is slower, but people reported that it works...

bug
Windows