node模块
程序员文章站
2022-03-06 13:20:39
...
node 模块
1.核心模块:内置的,开箱即用
http
.createServer(function (request, response) {
response.writeHead(200, { "Content-Type": "text/html; charset=utf-8" });
response.end("<h2 style='color:red'>今天的天气真好!</h2>");
})
.listen(8081);
console.log("Server running at http://127.0.0.1:8081/");
http
.createServer(function (request, response) {
response.writeHead(200, { "Content-Type": "application/json" });
response.end(`
{
"id":925,
"user":"李同学",
"qq邮箱":"123456789@qq.com"
}
`);
})
.listen(8081);
console.log("Server running at http://127.0.0.1:8081/");
const fs = require("fs");
fs.readFile(__dirname + "/libin.txt", function (err, data) {
if (err) return console.error(err);
console.log(data.toString());
});
2.文件模块:自定义的先声明,在导入
module.exports = {
domain: "WWW.php.cn",
name: "PHP中文网",
getSite() {
return this.name + "(" + this.domain + ")";
},
};
let site = require("./m1.js");
3.第三方模块:npm安装的
上一篇: json,XHR,FetchAPI,async,await
下一篇: 好用的php开发工具
推荐阅读
-
101node-MongoDB数据库导入数据
-
Python命令行参数解析模块optparse使用实例
-
Python模块:logging
-
Python decimal模块使用方法详解
-
php框架 - thinkphp双项目,一个前台一个后台,访问不了admin项目的Login/login模块
-
php框架 - 有没有好用的PHP用户模块或框架?
-
ubuntu nginx 安装之后添加支持 mp4,flv 模块支持
-
实现PHP文件上传模块_PHP教程
-
PHP+jQuery 注册模块的改进(三):更新到Smarty3.1_php实例
-
Oracle EBS OM(Order Management)模块日志收集方法