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

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.

Awesome Lists containing this project

README

          

# create-npm-starter

> Generate boilerplate for your npm package.

NPM
MIT
CI
PRs welcome!
Typescript

## 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