Skip to content
关注公众号,获取新课通知

创建项目


安装egg.js

shell
# 全局切换镜像: 
npm config set registry https://registry.npmmirror.com

我们推荐直接使用脚手架,只需几条简单指令,即可快速生成项目(npm >=6.1.0):

shell
mkdir egg-example && cd egg-example
npm init egg --type=simple --registry https://registry.npmmirror.com
npm i

启动项目:

shell
npm run dev
open http://localhost:7001