Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
```