3.0.3 • Published 5 years ago
beanify-cli v3.0.3
beanify-cli
Command line tools for Beanify. Generate, write and run an application with one single command!
Install
npm install beanify-cli --globalUsage
beanify offers a single command line interface for your beanify
project:
$ beanifyWill 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 yourappnpm 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 yourpluginnpm install
The sample code offers you four npm tasks:
npm test- test the plugin