https://github.com/ricardoferreirasilva/typescript-express-kit
A configured boilerplate kit for using Express.js + Typescript for the building of APIs.
https://github.com/ricardoferreirasilva/typescript-express-kit
Last synced: about 1 month ago
JSON representation
A configured boilerplate kit for using Express.js + Typescript for the building of APIs.
- Host: GitHub
- URL: https://github.com/ricardoferreirasilva/typescript-express-kit
- Owner: ricardoferreirasilva
- License: mit
- Created: 2019-10-10T10:35:21.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-24T00:42:12.000Z (over 2 years ago)
- Last Synced: 2025-07-08T04:54:37.729Z (3 months ago)
- Language: TypeScript
- Size: 242 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Typescript / Express - Kit
A configured boilerplate kit with Express.js + Typescript for the building of APIs.##### Environment Variables
This project is using dotenv to load a .env file at the root of the project. This file should have the following variables configured:
* PORT - Port to be used by the express server.##### NPM Scripts
These are the currently configured scripts for running with NPM.
* npm start - runs /out/server.js with node.
* npm run dev - runs /out/server with nodemon.
* npm run watch - runs the typescript compiler with watch.
* npm run compile - runs the typescript compiler.
* npm test - uses mocha to run all the tests in the test folder.