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
- Host: GitHub
- URL: https://github.com/viqueen/typescript-package
- Owner: viqueen
- License: apache-2.0
- Created: 2023-05-24T01:50:52.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-28T08:09:24.000Z (about 1 year ago)
- Last Synced: 2024-05-28T19:50:48.317Z (about 1 year 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
```- 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
```