angular vue react 启动命令

vue:
npm install vue-cli -g
vue init webpack my-project
npm install
npm run dev


angular:
npm install -g typescript
npm install -g @angular/cli
ng new my-project
npm install
npm start (ng serve)

react:
npm install -g create-react-app
create-react-app react-project
npm install
npm run start

原文地址:https://www.cnblogs.com/sun-web/p/9520277.html