https://github.com/oakmac/basic-express-with-knex
https://github.com/oakmac/basic-express-with-knex
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/oakmac/basic-express-with-knex
- Owner: oakmac
- License: isc
- Created: 2019-10-02T00:58:39.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-11T01:49:32.000Z (over 3 years ago)
- Last Synced: 2025-03-26T13:54:03.733Z (about 1 year ago)
- Language: JavaScript
- Size: 212 KB
- Stars: 1
- Watchers: 2
- Forks: 7
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Basic express.js app using knex.js
A very basic [express.js] application using [knex.js].
[express.js]:https://expressjs.com/
[knex.js]:http://knexjs.org/
## Development Setup
```sh
# installs node_modules/ folder
npm install
# initialize database schema to latest migration
npx knex migrate:latest
# initialize database with seed data
npx knex seed:run
# start express.js server on port 3000
node index.js
```
## License
[ISC License](LICENSE.md)