https://github.com/jferrl/ts-kata-bootstrap
TypeScript proyect used as a kata bootstrap
https://github.com/jferrl/ts-kata-bootstrap
Last synced: 8 months ago
JSON representation
TypeScript proyect used as a kata bootstrap
- Host: GitHub
- URL: https://github.com/jferrl/ts-kata-bootstrap
- Owner: jferrl
- Created: 2020-11-25T18:02:24.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-11-25T18:25:41.000Z (over 5 years ago)
- Last Synced: 2025-01-19T19:26:05.495Z (over 1 year ago)
- Language: JavaScript
- Size: 52.7 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# TS Kata Bootstrap
The main purpose of this repository is to have a TypeScript kata bootstrap with a basic end-to-end project setup and workflow for writing Node code with TypeScript.
Proyect structure based on [microsoft/TypeScript-Node-Starter](https://github.com/microsoft/TypeScript-Node-Starter)
## Commands
All the different build steps are orchestrated via [npm scripts](https://docs.npmjs.com/misc/scripts).
| Npm Script | Description |
| ------------ | ------------------------------------------------------------------- |
| `start` | Runs node on `dist/index.js` which is the apps entry point |
| `build` | Full build. Runs ALL build tasks (`build-ts`) |
| `test` | Runs tests using Jest test runner |
| `watch-test` | Runs tests in watch mode |
| `build-ts` | Compiles all source `.ts` files to `.js` files in the `dist` folder |