[参考文章](https://yq.aliyun.com/articles/62421)
## 1.安装
~~~
npm i egg-init -g
mkdir egg-example && cd egg-example
npm init egg --type=simple
npm i
~~~
~~~
//启动项目
npm run dev
~~~
vscode插件安装
~~~
eggjs
~~~
## 2.egg.js的特点
~~~
1.提供基于egg定制的上层能力
2.高度可扩展的插件机制
3.内置多进程管理
4.基于koa开发,性能优异
5.框架稳定,测试覆盖率高
6.渐进式开发
~~~
![](https://box.kancloud.cn/949787276df56cf7cacf7d5eaeae157f_1142x635.png)
## 3.egg.js的准备
~~~
- html,css,javascript,e6基础
- node.js,koa.js基础
~~~