Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/mul14/boilerplate-ts-node

My TypeScript + Node + Jest Boilerplate - Biar gak cape setup mulu ...
https://github.com/mul14/boilerplate-ts-node

jest node typescript

Last synced: about 2 months ago
JSON representation

My TypeScript + Node + Jest Boilerplate - Biar gak cape setup mulu ...

Awesome Lists containing this project

README

        

# My TypeScript + Node + Jest Boilerplate

## Usage

To install all required packages, use

```
npm install
```

To run `.ts` file, run this command

```
npx ts-node src/main.ts
```

To compile all `src/*.ts` files to `dist/*.js`

```
npm run build
```

To test all files in `tests` directory using [Jest](https://jestjs.io)

```
npm t
```