Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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 ...
- Host: GitHub
- URL: https://github.com/mul14/boilerplate-ts-node
- Owner: mul14
- Created: 2018-10-11T09:23:07.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2021-06-02T04:38:01.000Z (over 3 years ago)
- Last Synced: 2024-11-08T08:48:22.418Z (3 months ago)
- Topics: jest, node, typescript
- Language: TypeScript
- Homepage:
- Size: 451 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```