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

https://github.com/repeale/ts-lib-starter

Typescript library starter
https://github.com/repeale/ts-lib-starter

Last synced: about 1 year ago
JSON representation

Typescript library starter

Awesome Lists containing this project

README

          

# ts-lib-starter

## Features

- ✅ [TypeScript](https://www.typescriptlang.org)
- 🧯 Linting via [ESLint](https://github.com/eslint/eslint) with [Prettier](https://github.com/prettier/prettier)
- ⛑️ Testing via [Jest](https://jestjs.io)

## Installation via git clone

- Clone this repository

```
git clone https://github.com/repeale/ts-lib-starter.git your-lib-name
```

- Remove the `.git` folder

- Change details within:

```
package.json
LICENSE
README.md
```

- Install dependencies

```
$ cd your-lib-name
$ npm install
```