nodejs-learning-guide icon indicating copy to clipboard operation
nodejs-learning-guide copied to clipboard

Nodejs学习笔记以及经验总结,公众号"程序猿小卡"

Results 11 nodejs-learning-guide issues
Sort by recently updated
recently updated
newest added

#阿里前端实习春招# 阿里CBU技术部招前端实习生啦!2023届的同学看过来,专业过关、前端基础扎实即可,低代码/跨端/直播/VR/electron/nodejs ,总有一款适合你 👍 可扫描下方二维码投递简历,感兴趣的小伙伴也可以加我微信 casperchen 咨询,注明是否找实习哦~ ![2022年-阿里校招内推-小卡](https://user-images.githubusercontent.com/2383346/159659254-14ac1e66-b9d2-4914-b724-d7e3955693bd.jpeg)

Bumps [ajv](https://github.com/ajv-validator/ajv) from 6.10.2 to 6.12.6. Release notes Sourced from ajv's releases. v6.12.6 Fix performance issue of "url" format. v6.12.5 Fix uri scheme validation (@​ChALkeR). Fix boolean schemas with strictKeywords...

dependencies

Bumps [npm](https://github.com/npm/cli) from 3.10.10 to 6.14.6. Release notes Sourced from npm's releases. v6.14.6 6.14.6 (2020-07-07) BUG FIXES a9857b8f6 chore: remove auth info from logs (@claudiahdz) b7ad77598 #1416 fix: wrong npm...

dependencies

你好。我看了你的写的文档,写的非常详细,想咨询一个问题。我按照文档弄了一个socket程序, 发现client 发过来的一条消息,内容比较小的时候没有问题,内容大的时候被服务器进行分片接收了,如下代码的YYYY被打印了多次,将这些接收到的数据要合并在一起就是client的原始消息, 想咨询下你又没有什么办法能把分片的socket请求合并在一起,然后执行dosomething() 方法。 ```javascript const server = new net.createServer(); server.on('connection', (client) => { client.on('data', async (msg) => { //接收client发来的信息 const data = msg.toString('utf-8') console.log("YYYY") console.log(data ) console.log("xxxxx") dosomething();...

Bumps [morgan](https://github.com/expressjs/morgan) from 1.6.1 to 1.9.1. Release notes *Sourced from [morgan's releases](https://github.com/expressjs/morgan/releases).* > ## 1.9.1 > * Fix using special characters in format > * deps: depd@~1.1.2 > - perf:...

dependencies

之前的图是旧版本,是 url.parse()方法,现在有了实现 WHATWG标准的新 API:https://nodejs.org/api/url.html#url_url_strings_and_url_objects ![image](https://user-images.githubusercontent.com/9691577/61874512-2dddd000-af1b-11e9-8460-817ef5fe7ca7.png)

通过读取openssl生成的公私钥进行加密。密钥长度必须为1024bit