https://github.com/webmatze/typescript-starter
a TypeScript boilerplate for node projects
https://github.com/webmatze/typescript-starter
boilerplate jest nodejs typescript yarn
Last synced: 2 months ago
JSON representation
a TypeScript boilerplate for node projects
- Host: GitHub
- URL: https://github.com/webmatze/typescript-starter
- Owner: webmatze
- License: mit
- Created: 2018-02-02T14:21:30.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-02-02T14:57:57.000Z (over 8 years ago)
- Last Synced: 2025-02-26T17:47:19.241Z (over 1 year ago)
- Topics: boilerplate, jest, nodejs, typescript, yarn
- Language: TypeScript
- Homepage:
- Size: 34.2 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# TypeScript-Starter
a TypeScript boilerplate for node projects using jest for tests
* use [TypeScript](https://www.typescriptlang.org/)
* backwards compatible with node.js (CommonJS) exports
* simple (zero configuration) TypeScript tests using [Jest](https://facebook.github.io/jest/)
* uses [yarn](https://yarnpkg.com/lang/en/) for package managemant
* uses [standard-version](https://github.com/conventional-changelog/standard-version) for CHANGELOG creation and release management
* more to come...
## Install dependencies
```bash
yarn
```
## Tests
All tests are co-located with the files they test. Test are written in TypeScript.
Run all tests:
```bash
yarn test
```
## Building
```bash
yarn build
```