摘要: 阅读全文
posted @ 2020-11-24 15:17 ayuuuuuu 阅读(278) 评论(0) 推荐(0) 编辑
摘要: index.js const server = require('./server'); const router = require('./router'); server.start(router.route); server.js const http = require('http'); / 阅读全文
posted @ 2020-10-16 19:38 ayuuuuuu 阅读(110) 评论(0) 推荐(0) 编辑
摘要: index.js const server = require('./server'); const router = require('./router'); server.start(router.route); server.js const http = require('http'); / 阅读全文
posted @ 2020-10-16 15:42 ayuuuuuu 阅读(99) 评论(0) 推荐(0) 编辑
摘要: index.js const server = require('./server'); const router = require('./router'); server.start(router.route); server.js const http = require('http'); / 阅读全文
posted @ 2020-10-16 14:29 ayuuuuuu 阅读(125) 评论(0) 推荐(0) 编辑
摘要: const http = require('http'); // Node.js 内置的 http 模块 /** 请求事件发生时调用的回调函数 (Node.js 是执行单线程异步非阻塞事件驱动的) */ function requestListener(req, rep) { console.log 阅读全文
posted @ 2020-10-16 13:03 ayuuuuuu 阅读(1155) 评论(0) 推荐(0) 编辑
摘要: 循序的引用资料, 介绍了 CPU, 多核, 超线程, 多线程与多进程等概念 阅读全文
posted @ 2020-08-17 15:44 ayuuuuuu 阅读(1403) 评论(1) 推荐(0) 编辑
摘要: 讲解了 __proto__, [[prototype]] 和 prototype 三者的关系, 并用 js 实现了一个 __proto__ 阅读全文
posted @ 2020-08-15 20:34 ayuuuuuu 阅读(868) 评论(0) 推荐(0) 编辑
摘要: 写了一个简单的 demo 用来学习 SVG 的一些属性, 如 viewport, viewBox, preserveAspectRatio 等 阅读全文
posted @ 2020-08-13 12:25 ayuuuuuu 阅读(146) 评论(0) 推荐(0) 编辑
摘要: 使用 dot 语言写了一个简单的流程图 demo, 可以当作绘制流程图时的模板使用 阅读全文
posted @ 2020-08-07 13:53 ayuuuuuu 阅读(1004) 评论(0) 推荐(0) 编辑
摘要: 概括总结了 IEEE 754 实现的浮点数 阅读全文
posted @ 2020-08-03 11:00 ayuuuuuu 阅读(905) 评论(1) 推荐(0) 编辑