javascript-boilerplate
javascript-boilerplate copied to clipboard
Node.js+Koa.js+PostgreSQL+React.js+Webpack+Mocha+Makefile, a starter kit for new apps
After setting up everything as instructed it didn't work (node instances seems to be working but URLs are not working - blank) on Windows 8+
Add a command to create database and migrate to allow everyone to run the project quickly.
- [x] Upgraded to node `7.2.1` - [x] Updated most dependencies - [x] Ditch `reify` and `async-to-gen` in favor of babel which is fast too when correctly configured - [x]...
Follow #147 The goal is to have a cleaner separation of concerns between storage and business related features. - [x] Replaced models by repositories which are responsible for loading a...
I'm able to limit how many resources are returned by using the following query: 'http://localhost:3000/api/products?limit=2'. This was simple to do, but I've been unable to use any of the other...
[email protected] cannot create an order in the Admin app. orders/Create.js should probably create a for order and also an ability to search and add multiple products to an order. This...
Follow #128 and #132 Just for fun, I gave graphql a try using [Apollo](http://dev.apollodata.com/) I love it ! - [x] Added graphql and graphiql on the API (access graphiql for...
Storing db configuration in environment variable adviced to follow [the twelve-factor app methodology](http://12factor.net/config). ~~The drawback is that it requires [direnv](http://direnv.net/)... but it is a really usefull tool used on my...
As discussed with @alexisjanvier, we currently have storage related code in our models. We should consider introducing repositories.