在mac机上如何安装使用Node.js,如何搭建服务器,启用服务器,测试等等。
ringa_lee
當然參考官方文件最好:https://nodejs.org/en/download/。
brew install nodebrew install nginxnpm install expressnpm install pm2 -gpm2 start bin/www 修改nginx.conf 新增修改代理程式碼hosts訪問你的專案
樓上說的都可以,補充一個用 nvm 安裝
curl -o- https://raw.githubusercontent... | bash
nvm install node詳細看這裡:https://github.com/creationix...
當然參考官方文件最好:https://nodejs.org/en/download/。
brew install node
大概就這麼流程,僅供參考brew install nginx
npm install express
npm install pm2 -g
pm2 start bin/www
修改nginx.conf 新增修改代理程式碼hosts
訪問你的專案
樓上說的都可以,補充一個用 nvm 安裝
curl -o- https://raw.githubusercontent... | bash
nvm install node
詳細看這裡:https://github.com/creationix...