nodejs第一个程序,运行 node 1.js

var http = require("http");
http.createServer(function (a,b) {
    b.writeHead(200,{'content-type':'text/html'});
    b.write("<meta charset='utf-8' />");
    b.end("你好测试100分");
}).listen(8080,'127.0.0.1');
console.log("正在运行中");

文件模块

var fs = require('fs');//读取文件
var ss = fs.readFileSync('1.txt','utf8');//同步读取
fs.readFile('1.txt','utf8',function (err,rs) {
        //异步输出
    });

定义模块

exports.getname = function (names) {
    return names;
}
使用
var my = require('./2');
my.getname("123")

常用模块
until 常用函数集合
events 事件驱动
fs 文件系统
http 服务器

  • express

mkdir nodejs
cd nodejs
npm init
npm install express –save
node app.js

const express = require('express')
const app = express()
const port = 3000

app.get('/', (req, res) => {
  res.send('Hello World!')
})

app.listen(port, () => {
  console.log(`Example app listening at http://localhost:${port}`)
})
作者:Yoby  创建时间:2020-07-26 22:11
 更新时间:2024-12-05 13:26
上一篇:
下一篇: