项目初始化

  1. $ npm install @easy-team/res-cli -g
  2. $ res --help
  3. Commands:
  4. init [options] init boilerplate
  5. dev start res project for develoment mode
  6. start start res project for production mode
  7. build [options] [env] webpack building
  8. debug start project for develoment debug mode
  9. test unit test
  10. cov code cov
  11. add add tempplate or component
  12. print [options] [env] print webpack config, support print by env or config key
  13. server [options] static file web http server
  14. dll [env] webpack dll build
  15. clean [dir] webpack cache dir clean, if dir == "all", will clean cache dir and build dir
  16. open [dir] open webpack cache dir
  17. kill [port] kill port process
  18. upgrade [options] upgrade project package to latest version
  19. tsc [options] typescript compile
  • 初始化项目

可以通过 res init 和 git clone 初始化代码

➜ $ res init
$ ? please choose the boilerplate mode? create res application
$ ? Please input project name: res-app
$ ? Please input project description:
$ ? Please choose css style: css
$ ? Please choose the way to install dependency: none
$ [res-cli]:query npm info of res-awesome
$ [res-cli]:downloading https://registry.npmjs.org/res-admin/-/res-awesome-1.0.0.tgz
$ [res-cli]:extract to /var/folders/hj/fs_pkpfn7vdcg176058mb1540000gn/T/res-cli-init
$ [res-cli]:init res-app project successfully!
$ [res-cli]:Now, start coding by follow step:
$ 1) cd res-app
$ 2) npm install or yarn install
$ 3) npm run dev or npm start
  • 本地开发运行
  • 服务端渲染需要通过 Webpack 构建两份配置,一份给 服务端用,一份给客户端用

  • 前端渲染时,只需要构建一份配置,这个时候需要在 res.config.js 加入 target: web 指定只构建前端运行文件

npm run dev

快速开始 - 图1

  • 项目构建
npm run build
  • 项目发布

npm run build 项目构建后,需要把构建后的文件和项目一起发布,可以排除所有 ts 结尾的文件。

模板代码

Node代码

渲染方式:React Server Render | React Client Render | React Nunjucks Render

image.png

前端代码

image.pngimage.png