Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Postgraphile | 11,939 | 76 | 99 | 4 days ago | 156 | May 25, 2022 | 66 | mit | TypeScript | |
Execute one command (or mount one Node.js middleware) and get an instant high-performance GraphQL API for your PostgreSQL database! | ||||||||||
Kails | 513 | 3 months ago | 3 | mit | JavaScript | |||||
A Web App like Ruby on Rails with Koa2, Webpack and Postgres | ||||||||||
React Universal | 303 | 8 years ago | 4 | JavaScript | ||||||
React, redux, react-router, graphql, postgres, koa, universal starter-kit | ||||||||||
Javascript Boilerplate | 251 | 4 years ago | 9 | JavaScript | ||||||
Node.js+Koa.js+PostgreSQL+React.js+Webpack+Mocha+Makefile, a starter kit for new apps | ||||||||||
Atlas Of Thrones | 233 | 3 years ago | 6 | other | JavaScript | |||||
An interactive "Game of Thrones" map powered by Leaflet, PostGIS, and Redis. | ||||||||||
Koa Skeleton | 213 | 5 years ago | 1 | November 27, 2017 | 7 | JavaScript | ||||
🗺 a simple app that demonstrates koa + postgres + other useful abstractions | ||||||||||
Serverless | 127 | 3 years ago | 1 | Python | ||||||
TencentCloud Serverless | ||||||||||
Node Koa Api | 116 | 5 years ago | 2 | mit | JavaScript | |||||
Contentjet Api | 85 | 4 years ago | 2 | mit | TypeScript | |||||
Headless API-first content management system | ||||||||||
Puresql | 48 | 1 | 1 | 7 months ago | 15 | March 22, 2022 | 2 | JavaScript | ||
ES6/7 ready SQL library for node.js inspired by Clojure's yesql |
A Web App like Ruby on Rails with Koa2, Webpack and Postgres.
This project is like Ruby on Rails Project:
├── app
│ ├── assets
│ │ ├── images
│ │ ├── javascripts
│ │ └── stylesheets
│ ├── controllers
│ ├── helpers
│ ├── models
│ ├── routes
│ ├── services
│ ├── views
│ └── index.js
├── config
│ ├── config.js
│ └── webpack
│ ├── base.js
│ ├── development.js
│ └── production.js
├── db
│ └── migrations
├── index.js
├── package.json
├── public
└── test
git clone https://github.com/embbnux/kails.git
yarn
yarn db:migrate
yarn assets_build
yarn start
$ yarn console
> models.User.create({ name: 'test', email: '[email protected]', password: '12345678', passwordConfirmation: '12345678' }).then(function(user) { console.log(user) })
> models.User.findOne({ where: { email: '[email protected]' } }).then(function(user) { console.log(user) })
How to Deploy Kails With Docker
# migrate database
yarn db:migrate
NODE_ENV=test yarn db:migrate
# run for development. it start app and webpack dev server
yarn start
# run the app
yarn app
# run the lint
yarn lint
# run test
yarn test
# deploy
yarn build
yarn assets_compile
NODE_ENV=production npm run db:migrate
yarn pm2
# console
yarn console