1.安装node,可以根据官网上的 *** 作来一套行云流水
2.其实你桌面见一个项目例如node项目,然后再建立一个项目例如hello.js,我们尝试一下看看node执行结束了没有,如果执行结束,那么接下来,我们node hello.js则可以展示出以下
接下来我们创建一个server.js,接下来我们来尝试一下这个创建的过程,这里要介绍一下:
我们可以用一个require指令来载入http的模块,然后我们可以使用http.createServer的方法去创建服务器,用request,response来接收和传递参数,listen去监听。
// 引入require模块
var http = require('http');
// 创建服务器
http.createServer(function (request, response) {
// 发送http头部
// http状态值:200:ok
response.writeHead(200, {
'content-type': 'text/plain'
});
// 发送响应数据
response.end('node.js\n');
}).listen(8080);
console.log("server running at http://127.0.0.1:8080/");
上面是我写的一个代码的demo,执行代码node server.js,点入server running at http://127.0.0.1:8080/,会执行发送的response.end里面的数据展示在页面上。
npm 的使用相信那些命令你应该比较熟悉了,那么还是复习一下
npm -v:看看你的版本
sudo npm install npm -g:你的版本过低,想换成最新的!
npm install npm -g:windows安装全局
接下来就是安装对应的express和使用的方法
npm install express :局部安装
npm install express -g:全局安装express
查看安装成果:npm list -g
今天先写到这里,明天接着写
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)