@webgo/cli
v0.0.15
Published
Command line interface for webgo applications
Downloads
7
Readme
@webgo/cli
Command line interface for webgo applications
Install
npm i -g @webgo/cli
create a project
webgo create myapp
under the hood this will create a new react project using react-create-app
Add plugins
webgo add boilerplate
This will clone the boilerplate repository and merge with your repository under src/plugins folder.
A full example
npm i -g @webgo/cli
webgo create myapp
cd myapp/
webgo add boilerplate auth
yarn start