随笔分类 -  NodeJS

摘要:在执行 `nrm ls` 时出现错误 ```bash Error [ERR_REQUIRE_ESM]: Must use import to load ES Module: ... require() of ES modules is not supported. ... ``` **原因:** 应 阅读全文
posted @ 2023-05-24 13:39 ychizzz 阅读(95) 评论(0) 推荐(0) 编辑
摘要:代码如下: const http = require('http'); /* request 获取url传来的信息 response 给浏览器的响应信息 */ http.createServer(function (request, response) { // 设置响应头 response.wri 阅读全文
posted @ 2021-02-19 19:36 ychizzz 阅读(99) 评论(0) 推荐(0) 编辑