liven-cli
v1.0.2
Published
Downloads
2
Readme
Liven Framework Cli
THis is the official cli for Liven js framework which helps you to start liven application, create components, pages, routes easily
Install
npm i -g liven-cli
Initializing new app
navigate to any directory you want and write the following command
liven init {appName}
you have to specify the application name, once this command runs, it will create new directory with the specified name and it will put all generated files inside this directory, also it will create package.json file for you
Note
After init command you have to run the following command
npm install
This command to install all the dependencies that liven requires to get work
Start the application
to start liven app you just need to write the following command
liven start-dev
Liven Cli Create component
liven Component {componentName}
Liven Cli Create Page
liven Page {pageName}
Liven Cli Create Route
liven Route {RouteName} --p {PageName} -u {url}