Ecosyste.ms: Awesome
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: about 1 month ago
JSON representation
Template for building simple node packages using Typescript
- Host: GitHub
- URL: https://github.com/viqueen/typescript-package
- Owner: viqueen
- License: apache-2.0
- Created: 2023-05-24T01:50:52.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-05-28T08:09:24.000Z (8 months ago)
- Last Synced: 2024-05-28T19:50:48.317Z (8 months ago)
- Topics: node, npm, npm-package, typescript, yarn
- Language: TypeScript
- Homepage:
- Size: 62.5 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```