Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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: about 1 month 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
```

- **[yarn](https://yarnpkg.com/)** as node package manager

```bash
brew install yarn
```

### house-keeping

- build it

```bash
yarn build
```

- format it

```bash
yarn format
```

- lint it

```bash
yarn lint
yarn lint --fix
```

- test it

```bash
yarn test
```