beanify-cli
v3.0.3
Published
beanify beanify-cli
Downloads
9
Readme
beanify-cli
Command line tools for Beanify. Generate, write and run an application with one single command!
Install
npm install beanify-cli --global
Usage
beanify
offers a single command line interface for your beanify
project:
$ beanify
Will print an help:
Beanify command line interface, available commands are:
* generate generate a new project
* generate-plugin generate a new plugin project
* version the current beanify-cli version
* help help about commands
Launch 'beanify help [command]' to know more about the commands.
generate
beanify-cli
can also help with generating some project of your next beanify application. To use it:
beanify generate <yourapp>
cd yourapp
npm install
The sample code offers you four npm tasks:
npm start
- starts the application
Finally there will be an app.js
file, which is your entry point.
generate-plugin
beanify-cli
can help you improve your plugin development by generating a scaffolding project
beanify generate-plugin <yourplugin>
cd yourplugin
npm install
The sample code offers you four npm tasks:
npm test
- test the plugin