Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 9 days 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 (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-02-02T14:57:57.000Z (almost 7 years ago)
- Last Synced: 2024-11-11T10:53:15.428Z (2 months 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
```