Skip to content

h-webapp/cli

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

43 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Getting Started

install

    npm i h-application -g

init project

    h-application --name helloword

install dependence

    cd helloworld
    npm install

start server

    npm run start
    //run debug server
    npm run start-debug

build

    //build develop
    gulp buildDev
    //build release
    gulp buildRelease
    //build all
    gulp build
    //clean develop
    gulp cleanDev
    //clean release
    gulp cleanRelease
    //clean all
    gulp clean

帮助

h-application是一个快速搭建web应用的cli,框架主要基于模块和应用,模块和应用中包含组件、指令、依赖的资源,每个模块和应用可分布式部署, 框架包含一个模块和应用分析工具,自动分析出当前页面的模块、应用依赖情况,可方便的了解到模块和应用的重复依赖。