Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/sylhare/typescript-seed

Seed project for typescript
https://github.com/sylhare/typescript-seed

template template-project typescript

Last synced: about 2 months ago
JSON representation

Seed project for typescript

Awesome Lists containing this project

README

        

# Typescript-seed

Seed project for typescript.
Use this repository as a template for your typescript projects.

## Getting Started

Install the dependencies:

```bash
npm install
```

Build the project:

```bash
npm run build
```

Run the project:

```bash
npm start
```

Test the project using *Jest*:

```bash
npm test
# To test and display the coverage
npm test:cov
```

Lint the project using *ESLint*:

```bash
npm run lint
# To fix the linting errors
npm run lint:fix
```