Node.js
概念
1. Nodejs概述
一些概念
适用场景(优缺点)
- 不适合用于大型后端要求的项目,图像处理、视频转换等、文件压缩(用Ruby、PHP、python)
基础使用
0.模块导入
一般有两种导入办法,commonjs和ESMoudle方法
1.repl
2.file
node:fs
模块能够以标准 POSIX 函数为模型的方式与文件系统进行交互。
人话:读写文档用的
同步办法
同步(synchronous)代码也称为阻塞(blocking)代码,阻塞代码在执行完之前,后面的代码都不会执行
1 2 3 4 5 6 7 8 9 10
| const fs = require("fs");
const textIn = fs.readFileSync("./txt/input.txt", "utf-8"); console.log(textIn);
const textOut = `这是一个关于python输入输出的概述${textIn}.\n写入时间是${Date.now()}`; fs.writeFileSync("./txt/output.txt", textOut); console.log("文件写入成功");
|
异步办法
1 2 3 4 5 6 7 8 9 10 11 12 13 14
| fs.readFile("./txt/start.txt", "utf-8", (err, data) => { if (err) return console.log("读取文件失败"); fs.readFile(`./txt/${data1}.txt`, "utf-8", (err, data2) => { console.log(data2); fs.readFile("./txt/append.txt", "utf-8", (err, data3) => { console.log(data3); fs.writeFile("./txt/final.txt", `${data2}\n${data3}`, "utf-8", err => { console.log("文件写入成功"); }); }); }); console.log(data); });
|
光看可能还是不容易理解,这里记住同步就是要把文件读完后才会执行下面代码,异步就是会边读文件边运行回调函数
3.Server
尝试第一个接口编写
1 2 3 4 5 6 7 8 9 10 11 12
| const http = require("http");
const server = http.createServer((req, res) => { console.log(req); res.end("Hello World"); });
server.listen(8000, () => { console.log("Server is running..."); });
|
4.Url
这时我们可以尝试使用Url了
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
| const http = require("http"); const url = require("url");
const server = http.createServer((req, res) => { const pathName = req.url; if (pathName === "/" || pathName === "/overview") { res.end("This is the OVERVIEW"); } else if (pathName === "/product") { res.end("This is the PRODUCT"); } else { res.writeHead(404, { "Content-type": "text/html", "my-own-header": "hello-world", }); res.end("<h1>Page not found!</h1>"); } });
server.listen(8000, () => { console.log("Server is running..."); });
|
__dirname
:当前文件所在位置
5.第一个APi
视频的013:9:56
可以利用同步的缓存来优化文件输出,不用每次都得读一次文件,而是缓存后直接输出。
6.path模块
对路径操作
path.resolve()
7.使用npm
npm(node package manager)node包管理器。我们可以从上面下载模块,并导入使用
npm在node安装时,会自动安装。这里我们使用npm安装nodemon
、slugify
来优化项目。
nodemon
:用于服务器热更新
slugify
:用于解析字符串、转换为url友好
学了半天都是再讲概念(都是自己知道的,因为写过python后端),我真的会谢