博客列表 >node模块

node模块

木子木杉
木子木杉原创
2022年01月13日 14:53:37387浏览

node 模块

1.核心模块:内置的,开箱即用

  1. http
  2. .createServer(function (request, response) {
  3. response.writeHead(200, { "Content-Type": "text/html; charset=utf-8" });
  4. response.end("<h2 style='color:red'>今天的天气真好!</h2>");
  5. })
  6. .listen(8081);
  7. console.log("Server running at http://127.0.0.1:8081/");
  1. http
  2. .createServer(function (request, response) {
  3. response.writeHead(200, { "Content-Type": "application/json" });
  4. response.end(`
  5. {
  6. "id":925,
  7. "user":"李同学",
  8. "qq邮箱":"123456789@qq.com"
  9. }
  10. `);
  11. })
  12. .listen(8081);
  13. console.log("Server running at http://127.0.0.1:8081/");
  1. const fs = require("fs");
  2. fs.readFile(__dirname + "/libin.txt", function (err, data) {
  3. if (err) return console.error(err);
  4. console.log(data.toString());
  5. });

2.文件模块:自定义的先声明,在导入

  1. module.exports = {
  2. domain: "WWW.php.cn",
  3. name: "PHP中文网",
  4. getSite() {
  5. return this.name + "(" + this.domain + ")";
  6. },
  7. };

let site = require("./m1.js");
3.第三方模块:npm安装的

声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议