# gin-npg

> Node package generator.

Latest version **0.0.1** (published 2018-10-27) · MIT license · 0 weekly downloads

## Install

```sh
npm install gin-npg
pnpm add gin-npg
yarn add gin-npg
bun add gin-npg
```

Provides the command `npg`.

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.1 |
| Published | 2018-10-27 |
| First published | 2018-10-27 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 6 |
| Unpacked size | 5.9 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 2 |
| Author | lancegin |
| Maintainers | lancegin |
| Keywords | scaffold, shell, framework, node, commander |

## Links

- npm: https://www.npmjs.com/package/gin-npg
- Repository: https://github.com/LanceGin/npg
- Homepage: https://github.com/LanceGin/npg#readme
- Issues: https://github.com/LanceGin/npg/issues
- npm.io page: https://npm.io/package/gin-npg

## Dependencies (6)

- [chalk](https://npm.io/package/chalk.md) ^2.4.1
- [inquirer](https://npm.io/package/inquirer.md) ^6.2.0
- [commander](https://npm.io/package/commander.md) ^2.11.0
- [handlebars](https://npm.io/package/handlebars.md) ^4.0.12
- [metalsmith](https://npm.io/package/metalsmith.md) ^2.3.0
- [log-symbols](https://npm.io/package/log-symbols.md) ^2.2.0

## Alternatives

- [@sveltejs/kit](https://npm.io/package/@sveltejs/kit.md) — 2.2M weekly downloads
- [@atlaskit/theme](https://npm.io/package/@atlaskit/theme.md) — 402.0K weekly downloads
- [@tangle-network/brand](https://npm.io/package/@tangle-network/brand.md) — 10.0K weekly downloads
- [seneca](https://npm.io/package/seneca.md) — 7.4K weekly downloads
- [@bsb/base](https://npm.io/package/@bsb/base.md) — 7.2K weekly downloads

## Recent versions

- 0.0.1 (latest) — 2018-10-27

## README

# npg

> `npg` -> `node package generator`

`npg` is a command line tool to generate a node package with a basic template.

## Screenshot

![npg](http://orhcxc3kd.bkt.clouddn.com/npg.png)

## Installation

```shell
npm install gin-npg -g
```

## Usage

```shell
$ npg -h
Usage: npg <command> [options]

Options:
  -V, --version  output the version number
  -h, --help     output usage information

Commands:
  init|i [name]  generate a new node module
```

## Structure

```
Your Node Package
├── README.md
├── .npmignore
├── .babelrc
├── .eslintrc.js
├── .gitignore
├── package.json
└── src
    └── index.js

```

* all the source files of the package would be put in the `src` directory.
* when you want to publish the package, run `npm run build` to build `src` to `lib`.
* eslint rules were base on `airbnb`, you can run `npm run lint` to check your code.

## License
MIT

---
_Source: https://npm.io/package/gin-npg · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
