## Getting Started Installation dependencies ```bash $ npm install ``` or use yarn ``` $ npm install -g yarn $ yarn install --pure-lockfile ``` Start server. ```bash $ npm run dev # visit http://localhost:8030 ``` Submit code ```bash $ git commit -m "xxx" will automatically run npm run lint to check grammar rules ``` Construct ```bash $ npm run build ``` Technology stack convention ``` react + react-router-dom + ant-design + rxjs ``` ## File introduction ``` public: some static resources src: development home directory assets: static resources, pictures, etc., refer to webpack components: common components pages: subpages, can contain subcomponents utils: public methods webpack.config.js: webpack configuration ```