Nodejs服务端开发二
1.定时任务
1 | var schedule = require('node-schedule'); |
参考文章:
1.Nodejs定时任务(node-schedule):https://www.jianshu.com/p/8d303ff8fdeb
2.Nodejs学习笔记(十二)— 定时任务(node-schedule):https://www.cnblogs.com/zhongweiv/p/node_schedule.html
1.Nodejs定时任务(node-schedule):https://www.jianshu.com/p/8d303ff8fdeb
2.Nodejs学习笔记(十二)— 定时任务(node-schedule):https://www.cnblogs.com/zhongweiv/p/node_schedule.html
2.日志记录
参考文章:
1.Node.js日志记录指南:https://www.html.cn/web/node-js/14624.html
2.pinojs/pino:https://github.com/pinojs/pino
3.求问现在 Node 推荐什么日志框架?:https://cnodejs.org/topic/5d6dc8b0d50f572345911096
1.Node.js日志记录指南:https://www.html.cn/web/node-js/14624.html
2.pinojs/pino:https://github.com/pinojs/pino
3.求问现在 Node 推荐什么日志框架?:https://cnodejs.org/topic/5d6dc8b0d50f572345911096
3.启用GZip压缩
restify使用插件的形式,开启GZip压缩
1 | const restify = require('restify'); |