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
- Host: GitHub
- URL: https://github.com/repeale/ts-lib-starter
- Owner: repeale
- License: mit
- Created: 2020-01-03T23:24:34.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-05-05T20:39:03.000Z (about 4 years ago)
- Last Synced: 2025-03-20T03:04:06.685Z (about 1 year ago)
- Language: TypeScript
- Size: 543 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
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
```