https://github.com/coderosh/create-npm-starter
Generate boilerplate for your npm package.
https://github.com/coderosh/create-npm-starter
create-npm-start npm-package npm-starter
Last synced: 7 months ago
JSON representation
Generate boilerplate for your npm package.
- Host: GitHub
- URL: https://github.com/coderosh/create-npm-starter
- Owner: coderosh
- License: mit
- Created: 2021-06-22T08:20:55.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-07-01T13:14:39.000Z (over 4 years ago)
- Last Synced: 2024-11-08T00:51:54.778Z (about 1 year ago)
- Topics: create-npm-start, npm-package, npm-starter
- Language: TypeScript
- Homepage: http://npm.im/create-npm-starter
- Size: 245 KB
- Stars: 7
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# create-npm-starter
> Generate boilerplate for your npm package.
## Features
- Test with `jest`
- Lint with `eslint`
- Format with `prettier`
- CI with `github actions`
- Git hooks with `yorkie`
## Usage
```sh
# with npm
npm init npm-starter
# with yarn
yarn create npm-starter
```
And follow the prompts.
Or simply pass the project name and template.
```sh
# with npm
npm init npm-starter my-project -- --template typescript-starter
# with yarn
npm create npm-starter my-project --template typescript-starter
```
## Available templates
- javascript-starter
- typescript-starter