https://github.com/hugodf/modern-express-starter
https://github.com/hugodf/modern-express-starter
Last synced: 23 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/hugodf/modern-express-starter
- Owner: HugoDF
- License: mit
- Created: 2024-06-20T19:53:21.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-06-20T20:04:30.000Z (10 months ago)
- Last Synced: 2025-02-14T01:39:06.716Z (3 months ago)
- Language: JavaScript
- Size: 14.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# Modern Express Starter
Express boilerplate repo with:
- MIT License
- Node, npm
- tests with the `node:test` built-in
- formatting and linting with Biome
- GitHub Actions## Requirements
- Node 20
- npm v8+## Setup
1. Clone the repository
2. Run `npm install` installs all required dependencies.## npm scripts
- `npm start` will start the server
- `npm run dev` will run the server with Node's "watch mode"
- `npm test` will run tests using the [Node.js test runner](https://nodejs.org/api/test.html#running-tests-from-the-command-line) and the `node:test` module.
- `npm run lint` will run Biome lint on the files and tests.
- `npm run format` will run Biome format on files and tests.## LICENSE
Code is licensed under the [MIT License](./LICENSE).