✔1.node.js初体验windows | |
编写一段js代码,通过node.js运行服务端,在浏览器访问后端接口,会在浏览器当前页面输出 url_path,可能输出/,可能输出/users | |
index.js代码如下:
// 1. 导入 node.js 原生模块 httpconst http=require('http')// 2. 创建 server 实例const server = http.createServer((req,res)=>{ // 在此处理 客户端/浏览器 向 http server 发送过来的 req - request const url = req.url // '/index.html?age=18' const path = url.split('?')[0] // '/index.html' res.end(path) // res - response})// 3. 进入此网站的监听的port 就是localhost:xxxx的xxxxserver.listen(3000)console.log('Node.js web server at port 3000 is running..')
来到 index.js 的当前路径,敲 cmd 进入到终端:
使用到的命令
node index.js
在浏览器搜索框中,输入下面路由即对应的输出结果: