上一页 1 ··· 3 4 5 6 7 8 9 10 11 12 下一页
摘要: const fs = require('fs'); let file = fs.createReadStream("filename.js"); file.on("open", function(fd) { console.log("开始读取文件:"); }); file.on("data", function(data) { console.log("读取到数据:"); ... 阅读全文
posted @ 2017-07-05 17:31 yudis 阅读(1308) 评论(0) 推荐(0) 编辑
摘要: const fs = require('fs'); let file = fs.createReadStream("filenpath.js"); file.pause(); file.on("data", function(data) { console.log("读取到数据:"); console.log(data); }); setTimeout(function() {... 阅读全文
posted @ 2017-07-05 16:09 yudis 阅读(337) 评论(0) 推荐(0) 编辑
摘要: const stream = fs.createReadStream('/example.pdf', {bufferSize: 64 * 1024}) stream.pipe(res); let had_error = false; stream.on('error', function(err){ had_error = true; }); stream.on('close', func... 阅读全文
posted @ 2017-07-05 16:06 yudis 阅读(2304) 评论(0) 推荐(0) 编辑
摘要: 1、利用createReadStream方式计算大文件的md5签名 2、获取客房端IP地址 3、 阅读全文
posted @ 2017-07-03 15:29 yudis 阅读(353) 评论(0) 推荐(0) 编辑
摘要: 1、获取当前时间戳 +new Date Date.parse(new Date()) 阅读全文
posted @ 2017-07-01 18:19 yudis 阅读(136) 评论(0) 推荐(0) 编辑
摘要: 1、获取最后数组中最后一个元素 2、过滤重复元素 阅读全文
posted @ 2017-07-01 18:11 yudis 阅读(107) 评论(0) 推荐(0) 编辑
摘要: 1、首字母大写 2、截取字符串最后几位 3、生成随机字符串 4、解析 Base64 阅读全文
posted @ 2017-07-01 18:08 yudis 阅读(113) 评论(0) 推荐(0) 编辑
摘要: 1、for in 2、map 阅读全文
posted @ 2017-06-22 16:56 yudis 阅读(831) 评论(0) 推荐(0) 编辑
摘要: 1、普通字符串 2、十六进制Hex 3、图片 阅读全文
posted @ 2017-06-22 16:32 yudis 阅读(22051) 评论(0) 推荐(0) 编辑
摘要: io.on('connect', onConnect); function onConnect(socket){ // sending to the client socket.emit('hello', 'can you hear me?', 1, 2, 'abc'); // sending to all clients except sender socket.broa... 阅读全文
posted @ 2017-05-22 15:31 yudis 阅读(1084) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 12 下一页