随笔分类 -  Node

摘要:参考地址 阅读全文
posted @ 2024-11-06 09:51 ThisCall 阅读(4) 评论(0) 推荐(0) 编辑
摘要:地址 一路点下去 阅读全文
posted @ 2024-06-21 09:14 ThisCall 阅读(17) 评论(0) 推荐(0) 编辑
摘要:× Install fail! Error: certificate has expired Error: certificate has expired at TLSSocket.onConnectSecure (_tls_wrap.js:1515:34) at TLSSocket.emit (e 阅读全文
posted @ 2024-02-23 09:40 ThisCall 阅读(1087) 评论(0) 推荐(0) 编辑
摘要:参考 实际使用 升级webpack npm install -D webpack@latest 升级vue-cli npm install -g @vue/cli 创建vue-cli demo 重新配置 vue.config webpack >5报错问题 1、运行下面这行指令,安装在 Webpack 阅读全文
posted @ 2023-11-21 14:02 ThisCall 阅读(51) 评论(0) 推荐(0) 编辑
摘要:首先 sockjs-node 是一个JavaScript库,提供跨浏览器JavaScript的API,创建了一个低延迟、全双工的浏览器和web服务器之间通信通道。如果你的项目没有用到 sockjs,vuecli3 运行 npm run serve 之后 network 里面一直调研一个接口:http 阅读全文
posted @ 2021-11-26 13:42 ThisCall 阅读(473) 评论(0) 推荐(0) 编辑
摘要:https://www.jianshu.com/p/4a1c95c215da 控制台内执行 npm install -g cnpm --registry=https://registry.npm.taobao.org 安装成功后 使用 cnpm i xxx 代替 npm install xxx 阅读全文
posted @ 2020-04-17 21:40 ThisCall 阅读(2202) 评论(0) 推荐(0) 编辑
摘要:https://github.com/Kenshin/gnvm 下载gnvm,安装在node文件目录下 gnvm version 然后打开cmd命令行窗口,输入:gnvm update latest,回车即可。如图所示,正在进行更新操作,等待完成即可。 升级npm,不用npm latest npm 阅读全文
posted @ 2019-06-24 13:39 ThisCall 阅读(2624) 评论(0) 推荐(0) 编辑
摘要:1. 只卸载模块 由于之前安装过,在 package.json 中的记录仍然存在 2. --save 参数使用 卸载模块的同时删除在 package.json 文件中的记录 3. 卸载指定版本的模块 阅读全文
posted @ 2019-05-16 14:24 ThisCall 阅读(4106) 评论(0) 推荐(1) 编辑
摘要:https://blog.csdn.net/benben513624/article/details/88113459(copy) https://www.cnblogs.com/myfate/p/10600392.html(copy) https://blog.csdn.net/benben513 阅读全文
posted @ 2019-04-10 11:19 ThisCall 阅读(494) 评论(0) 推荐(0) 编辑
摘要:npm总是报错:unable to verify the first certificate 原创 2017年09月30日 11:06:10 https://blog.csdn.net/nicexibeidage/article/details/78140692?locationNum=2&fps= 阅读全文
posted @ 2018-04-17 13:23 ThisCall 阅读(886) 评论(0) 推荐(0) 编辑
摘要:const http = require("http");const express = require("express");const mysql = require("mysql"); var pool = mysql.createPool({ host:'127.0.0.1', user:' 阅读全文
posted @ 2017-08-10 17:20 ThisCall 阅读(204) 评论(0) 推荐(0) 编辑
摘要://处理客户post请求//*1:加载相应模块 http express querystring//*2:创建web服务器//*3:监听端口8080const http = require("http");const express = require("express");const qs = r 阅读全文
posted @ 2017-08-10 17:05 ThisCall 阅读(337) 评论(0) 推荐(0) 编辑
摘要://1:加载相关模块 http express mysqlconst http = require("http");const mysql = require("mysql");const express = require("express");console.log(1);//2:创建连接池va 阅读全文
posted @ 2017-08-10 16:24 ThisCall 阅读(222) 评论(0) 推荐(0) 编辑
摘要://1:加载http express框架//2:创建服务器const http = require("http");const express = require("express");var app = express();var server = http.createServer(app);s 阅读全文
posted @ 2017-08-10 15:52 ThisCall 阅读(1375) 评论(0) 推荐(0) 编辑
摘要:const http = require("http");const express = require("express");//3:创建express应用//4:创建服务器var app = express();//Express本质是一个处理请求函数var server = http.crea 阅读全文
posted @ 2017-08-10 15:27 ThisCall 阅读(274) 评论(0) 推荐(0) 编辑
摘要://1:加载相应的模块 http url fs mysqlconst http = require("http");const url = require("url");const fs = require("fs");const mysql = require("mysql");//2:创建连接池 阅读全文
posted @ 2017-08-10 14:36 ThisCall 阅读(1893) 评论(0) 推荐(0) 编辑
摘要://#使用nodejs编写动态的web服务器//1:加载需要模块 fs http urlconst fs = require("fs");const http = require("http");const url = require("url"); //2:创建web服务器//3:绑定端口var 阅读全文
posted @ 2017-08-10 11:59 ThisCall 阅读(408) 评论(0) 推荐(0) 编辑
摘要://功能:创建web服务器接收客户请求// http://127.0.0.1:8080/index 准备// http://127.0.0.1:8080/news 准备// public/index.html// public/news.html// public/404.html//1:加载htt 阅读全文
posted @ 2017-08-10 09:58 ThisCall 阅读(1650) 评论(0) 推荐(0) 编辑
摘要://1:加载http模块 httpconst http = require("http");//2:创建http 服务器var server = http.createServer();//3:为服务器绑定监听端口 8080//端品有效范围: 1023 65535server.listen(8080 阅读全文
posted @ 2017-08-10 09:49 ThisCall 阅读(198) 评论(0) 推荐(0) 编辑
摘要:console.log("1:开始读成取文件内容...");fs.readFile('./public/2.log',function(err,data){ if(err){ console.log("文件读取出现错误"); //console.log(err);错误的话返回code:ENOENT 阅读全文
posted @ 2017-08-10 09:17 ThisCall 阅读(270) 评论(0) 推荐(0) 编辑