## iRich 愛記帳 1. 安裝cmder、node.js 2. 使用cmder安裝express ``` npm install express-generator -g ``` MVC架構 ![](https://i.imgur.com/Zj40t1M.png) 3. 建立express環境 ``` express -e node-irich //建立node-irich專案 ``` 4. 安裝初始需要的套件 ``` cd node-irich && npm install ``` 5. 執行應用程式 ``` npm start ``` 6. 關聯式資料庫套件安裝 ``` npm install --save sequelize sequelize-cli sqlite3 ```