上一篇:《window系统下查看path》


《node.js 简介+安装》

作者 vhaixingv 创建于 18-06-01 14:11:39

学习教材网站, 只看这个也行的,有问题就看这个链接可以的

https://www.runoob.com/nodejs/nodejs-tutorial.html


学习心得:

简单的说 Node.js 就是运行在服务端的 JavaScript。

Node.js 是一个基于Chrome JavaScript 运行时建立的一个平台。

Node.js是一个事件驱动I/O服务端JavaScript环境,基于Google的V8引擎,V8引擎执行Javascript的速度非常快,性能非常好。

node -v  # 查看版本1

创建helloworld.js

创建helloworld.js

console.log("Hello World");

cmd一下输入  node helloworld.js  # 创建第一个文件

交互模式,类似python

> node   进入交互模式
> console.log('hello')

下载软件:https://nodejs.org/en/download/  

查看path:  cmd一下 ,输入path 能到了

进行第一次交互:cmd一下 输入node    输入console.log("hello")  看到效果了

查看版本 cmd一下, 输入 node -v


创建第一个server

var http = require('http');

http.createServer(function (request, response) {    
    // 发送 HTTP 头部     
    // HTTP 状态值: 200 : OK    
    // 内容类型: text/plain    
    response.writeHead(200, {'Content-Type': 'text/plain'});    
    // 发送响应数据 "Hello World"    
    response.end('Hello World\n');
}).listen(8888);
// 终端打印如下信息
console.log('Server running at 

执行:
node server.js
Server running at http://127.0.0.1:8888/


就介绍到这里:

学习教材网站, 只看这个也行的,有问题就看这个链接可以的

https://www.runoob.com/nodejs/nodejs-tutorial.html


npm的使用,npm是在安装node的时候也会安装上的,请阅读:npm使用介绍



下一篇:《好用的图片查看器IrfanView》