标签:ace 启动 com npm 安装 ash out module ##
在实际开发中有时候需要模拟服务器文件系统,就需要我们使用服务器文件系统相关功能。
有几个比较方便的工具,比如,Node和express结合,anywhere,http-server。
anywhere
使用npm install anywhere -g 全局安装,当然也可以使用cnpm。在想要发布的本地文件对应目录下执行anywhere即可。
其他命令:
http-client
同样使用node安装npm
install
-g http-server。
启动,http-server -a 127.0.0.1 -p 7070
还可以配置package.json
"scripts"
: {
"start"
:
"http-server -a 127.0.0.1 -p 7070"
}
1.服务启动: ng serve (-o,--open)
2.创建service :ng generate service XXX (--module=app)
3.(路由)创建:ng generate module app-routing --flat --module=app
4.创建组件:ng generate component XXX
标签:ace 启动 com npm 安装 ash out module ##
原文地址:https://www.cnblogs.com/ljwsyt/p/8966834.html