E:\github\qidijiaoyu\firemailProjects\firemail\test>node -e "console.log('test');"
test
node 直接进入编译模式
console.log("ttt");
第一行是输入、第二行是返回值 。
4.建立 一个http服务器,app.js 文件采用 严格模式"use strict";
let http = require('http');
http.createServer( function(req, res){
res.writeHead(200, {'Content-Type':'text/html'});
res.write('<h1>Node.js</h1>');
res.end('<p>Firemail</p>')
}).listen(3000);
console.log('HTTP server is listening at port 3000');