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

https://github.com/viqueen/typescript-package

Template for building simple node packages using Typescript
https://github.com/viqueen/typescript-package

node npm npm-package typescript yarn

Last synced: 4 months ago
JSON representation

Template for building simple node packages using Typescript

Awesome Lists containing this project

README

        

## typescript-package

Template for building node packages using Typescript

### environment

- **[nvm](https://github.com/nvm-sh/nvm)** to manage node versions.

```bash
brew install nvm
```

- install node version

```bash
nvm install
```

### house-keeping

- install dependencies

```bash
npm ci
```

- build it

```bash
npm run build
```

- format it

```bash
npm run format
```

- lint it

```bash
npm run lint
npm run lint --fix
```

- test it

```bash
npm test
```