https://github.com/wonism/reacteum-cli
https://github.com/wonism/reacteum-cli
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/wonism/reacteum-cli
- Owner: wonism
- License: mit
- Created: 2018-08-24T20:26:39.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-12-13T20:11:07.000Z (about 7 years ago)
- Last Synced: 2025-06-26T07:43:16.823Z (6 months ago)
- Language: JavaScript
- Size: 71.3 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
Awesome Lists containing this project
README
# reacteum-cli
Reacteum command line tool.
It helps you to create new project based on React JS
## Install
```
$ npm install --global reacteum-cli
# or
$ yarn global add reacteum-cli
```
## How to use
```
$ reacteum --help
```
### New
```
$ reacteum new <>
```
### Develop
In project root, you can run the webpack dev server
```
$ reacteum develop
```
### Bundle
In project root, you can bundle the react application
```
$ reacteum bundle
```
### Serve
In project root, you can run the express server
```
$ reacteum serve
```
### Transpile
```
$ reacteum transpile
```