Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/oakmac/basic-express-with-knex
https://github.com/oakmac/basic-express-with-knex
Last synced: 3 months 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 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-11T01:49:32.000Z (almost 2 years ago)
- Last Synced: 2024-04-14T12:55:27.994Z (9 months ago)
- Language: JavaScript
- Size: 212 KB
- Stars: 1
- Watchers: 3
- 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)