@quick-start/create-node-lib
Version:
An easy way to start a Node.js library
34 lines (22 loc) • 634 B
Markdown
# create-node-lib
An easy way to start a Node.js library
## Usage
With npm:
```bash
$ npm create @quick-start/node-lib
```
With Yarn:
```bash
$ yarn create @quick-start/node-lib
```
With pnpm:
```bash
$ pnpm create @quick-start/node-lib
```
Then follow the prompts!
## Features
- Lint with [ESLint](https://eslint.org/)
- Style with [Prettier](https://prettier.io/)
- Bundle with [unbuild](https://github.com/unjs/unbuild) / [tsup](https://github.com/egoist/tsup) / [rollup](https://github.com/rollup/rollup)
- Test with [vitest](https://vitest.dev/)
- TypeScript execution with [tsx](https://github.com/privatenumber/tsx)