官网下载Node.js
检查是否安装 $ node -v
下载安装node :https://nodejs.org/zh-cn/
$ curl http://npmjs.org/install.sh | sh 安装npm
$ sudo npm update npm -g 这一步是更新npm
brew可以对node和npm版本进行管理。安装brew:
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
出现 Press RETURN to continue or any other key to abort 按回车即可
安装完成,输入 $ brew
通过brew安装node和npm
$ sudo rm -rf /usr/local/share/systemtap/
$ brew uninstall node
$ brew install node
$ npm install -g grunt-cli
node.js安装好了,测试下,首先在终端创建一个 helloword.js 记事本
终端命令 vim helloword.js 然后输入以下代码保存
varhttp=require('http');
http.createServer(function(request,response){
// 发送 HTTP 头部// HTTP 状态值: 200 : OK// 内容类型:text/plain
response.writeHead(200,{'Content-Type':'text/plain'});
// 发送响应数据
response.end('Hello World\n');
}).listen(8000);
// 终端打印如下信息
console.log('Server running at http://127.0.0.1:8000/');
接着使用node命令执行以上代码
终端命令 node helloword.js
接下来,打开浏览器访问http://127.0.0.1:8000/,你会看到一个写着 "Hello World"的网页。
vue-cli初始化项目运行‘npm run dev’报错
webpack-dev-server --inline --progress --config build/webpack.dev.conf.js
删除 npm uninstall webpack-dev-server
安装 npm i webpack-dev-server@2.9.7