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

https://github.com/kbrsh/moon-cli

:sparkles: Easily scaffold a Moon project
https://github.com/kbrsh/moon-cli

cli moon scaffold

Last synced: 5 months ago
JSON representation

:sparkles: Easily scaffold a Moon project

Awesome Lists containing this project

README

          

# Moon Cli

## NOTE: This repo is outdated. The current source and documentation are available in [the Moon monorepo](https://github.com/kbrsh/moon/tree/master/packages/moon-cli).

:sparkles: A CLI to scaffold Moon applications

### Installation

Install with npm:

```sh
$ npm install moon-cli -g
```

### Getting Started

Create your first project with:

```sh
$ moon
```

`` is the name of your application, and Moon will proceed to create the directory and install the template there.

Next, move into the directory, install the dependencies, and run a dev server!

```sh
$ cd
$ npm install
$ npm run dev
```

### Production

To build a minified bundle, run:

```sh
$ npm run build
```

All html, css, and javascript will be minified and bundled accordingly.

### License

Licensed under the [MIT License](https://kbrsh.github.io/license) by [Kabir Shah](https://kabir.ml)