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
- Host: GitHub
- URL: https://github.com/kbrsh/moon-cli
- Owner: kbrsh
- License: mit
- Created: 2016-12-30T06:47:47.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2019-06-26T08:27:52.000Z (over 6 years ago)
- Last Synced: 2025-04-03T11:38:22.704Z (6 months ago)
- Topics: cli, moon, scaffold
- Language: JavaScript
- Homepage:
- Size: 33.2 KB
- Stars: 27
- Watchers: 7
- Forks: 5
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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)