# neopa-cli

> Command-line interface for Neopa boilerplate.

Latest version **1.2.1** (published 2019-02-18) · MIT license · 0 weekly downloads

## Install

```sh
npm install neopa-cli
pnpm add neopa-cli
yarn add neopa-cli
bun add neopa-cli
```

Provides the command `neopa`.

## Health

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

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.2.1 |
| Published | 2019-02-18 |
| First published | 2018-03-14 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >=6.0.0 |
| Dependencies | 17 |
| Unpacked size | 136.3 KB |
| Known vulnerabilities | 0 (+7 in 3 direct dependencies) |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Julian |
| Maintainers | julian-printemps |
| Keywords | neopa, cli, scaffold |

## Links

- npm: https://www.npmjs.com/package/neopa-cli
- Repository: https://github.com/julian-printemps/neopa-cli
- Homepage: https://neopa.jp
- Issues: https://github.com/julian-printemps/neopa-cli/issues
- npm.io page: https://npm.io/package/neopa-cli

## Dependencies (17)

- [npm](https://npm.io/package/npm.md) ^2.1.12
- [nopt](https://npm.io/package/nopt.md) ^3.0.1
- [async](https://npm.io/package/async.md) ^2.3.0
- [bower](https://npm.io/package/bower.md) ^1.6.8
- [which](https://npm.io/package/which.md) ^1.0.8
- [colors](https://npm.io/package/colors.md) ^1.0.3
- [lodash](https://npm.io/package/lodash.md) ^4.17.4
- [rimraf](https://npm.io/package/rimraf.md) ^2.2.8
- [semver](https://npm.io/package/semver.md) ^4.3.0
- [is-root](https://npm.io/package/is-root.md) ^1.0.0
- [js-yaml](https://npm.io/package/js-yaml.md) ^3.8.2
- [inquirer](https://npm.io/package/inquirer.md) ^0.8.3
- [multiline](https://npm.io/package/multiline.md) ^1.0.2
- [terminal-kit](https://npm.io/package/terminal-kit.md) ^1.8.7
- [string-length](https://npm.io/package/string-length.md) ^1.0.0
- [paint-by-number](https://npm.io/package/paint-by-number.md) 1.0.0
- [update-notifier](https://npm.io/package/update-notifier.md) ^0.2.2

## Alternatives

- [@salesforce/cli](https://npm.io/package/@salesforce/cli.md) — 389.7K weekly downloads
- [@mintlify/cli](https://npm.io/package/@mintlify/cli.md) — 208.9K weekly downloads
- [@grafana/e2e-selectors](https://npm.io/package/@grafana/e2e-selectors.md) — 128.7K weekly downloads
- [mintlify](https://npm.io/package/mintlify.md) — 112.0K weekly downloads
- [@intlayer/cli](https://npm.io/package/@intlayer/cli.md) — 22.8K weekly downloads

## Recent versions

- 1.2.1 (latest) — 2019-02-18
- 1.2.0 — 2019-02-15
- 1.1.0 — 2018-11-05
- 1.0.9 — 2018-11-05
- 1.0.8 — 2018-03-29
- 1.0.7 — 2018-03-29
- 1.0.6 — 2018-03-29
- 1.0.5 — 2018-03-14
- 1.0.4 — 2018-03-14
- 1.0.3 — 2018-03-14
- 1.0.2 — 2018-03-14
- 1.0.1 — 2018-03-14
- 1.0.0 — 2018-03-14

## README

# Neopa boilerplate CLI

This is the command-line interface for Neopa Boilerplate. It downloads and installs blank templates in any of the two Neopa Nuxt.js frameworks:

- [Neopa Boilerplate - Basic](https://gitlab.neopa.jp/neopa/neopa-boilerplate-foundation)
- [Neopa Boilerplate - Admin](https://gitlab.neopa.jp/neopa/neopa-admin-boilerplate)

## Requirements

You'll need the following software installed to get started.

  * [Node.js](http://nodejs.org) 0.12+: Use the installer provided on the NodeJS website.
    * With Node installed, run `[sudo] npm install -g gulp bower`.
  * [Git](http://git-scm.com/downloads): Use the installer for your OS.
    * Windows users can also try [Git for Windows](http://git-for-windows.github.io/).

## Installing

The Neopa Boilerplate CLI is installed through npm.

```bash
npm install -g neopa-cli
```

This will add the `neopa` command to your system.

### Updating

The CLI periodically gets updates that add features or fix bugs. Use npm to upgrade the CLI to the newest version.

```bash
npm update -g neopa-cli
```

To check what version you currently have, use `-v`.

```bash
neopa -v
```

## Commands

### New

Starts the setup process for a new Neopa Boilerplate project. The CLI will ask you which framework you want to use and a folder name for the project.

```bash
neopa new
```

### Watch

While inside of your app's folder, use the `npm run dev` command to assemble your app and run a test server.

```bash
cd appName
npm run dev
```

While this process is running, you can view the assembled app in your browser, at this URL:

```
http://localhost:3000
```

### Build

To build your app for production, use `npm run build`.

```bash
npm run build
```

### Generate

To build your pre-rendered app for production, use `npm run generate`.

```bash
npm run generate
```

### Update

Updates your packages, which includes Neopa Boilerplate. Run this command when you want to update an existing project to the newest version of Neopa Boilerplate.

```bash
neopa update
```

### Help

Lists all available commands in the CLI.

```bash
neopa help
```

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