Nodejs服务端开发二

标签: Nodejs 分类: Javascript 创建时间:2019-12-10 04:54:40 更新时间:2025-01-17 10:39:22

1.定时任务

1
2
3
4
5
6
7
8
9
10
11
12
var schedule = require('node-schedule');
var rule = new schedule.RecurrenceRule();
rule.minute = [0,15,30,45]; //每隔 15分钟执行一次

var j = schedule.scheduleJob(rule, function(){
console.log('The answer to life, the universe, and everything!');
});

// 每隔一分钟执行
var j = schedule.scheduleJob("0 */1 * * * *", function(){
console.log('The answer to life, the universe, and everything!');
});
参考文章:
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

3.启用GZip压缩

restify使用插件的形式,开启GZip压缩

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
const restify = require('restify');

const server = restify.createServer();
server.use(restify.plugins.acceptParser(server.acceptable));
server.use(restify.plugins.authorizationParser());
server.use(restify.plugins.queryParser());
server.use(restify.plugins.gzipResponse());
server.use(restify.plugins.bodyParser());

server.post('/plugins', (req, res, next) => {
console.log(req.body);
res.send({a: 1});
return next();
});

server.listen(8000, () => console.log('%s listening at %s', server.name, server.url));
小额赞助
本人提供免费与付费咨询服务,感谢您的支持!赞助请发邮件通知,方便公布您的善意!
**光 3.01 元
Sun 3.00 元
bibichuan 3.00 元
微信公众号
广告位
诚心邀请广大金主爸爸洽谈合作
每日一省
isNaN 和 Number.isNaN 函数的区别?

1.函数 isNaN 接收参数后,会尝试将这个参数转换为数值,任何不能被转换为数值的的值都会返回 true,因此非数字值传入也会返回 true ,会影响 NaN 的判断。

2.函数 Number.isNaN 会首先判断传入参数是否为数字,如果是数字再继续判断是否为 NaN ,不会进行数据类型的转换,这种方法对于 NaN 的判断更为准确。

每日二省
为什么0.1+0.2 ! == 0.3,如何让其相等?

一个直接的解决方法就是设置一个误差范围,通常称为“机器精度”。对JavaScript来说,这个值通常为2-52,在ES6中,提供了Number.EPSILON属性,而它的值就是2-52,只要判断0.1+0.2-0.3是否小于Number.EPSILON,如果小于,就可以判断为0.1+0.2 ===0.3。

每日三省
== 操作符的强制类型转换规则?

1.首先会判断两者类型是否**相同,**相同的话就比较两者的大小。

2.类型不相同的话,就会进行类型转换。

3.会先判断是否在对比 null 和 undefined,是的话就会返回 true。

4.判断两者类型是否为 string 和 number,是的话就会将字符串转换为 number。

5.判断其中一方是否为 boolean,是的话就会把 boolean 转为 number 再进行判断。

6.判断其中一方是否为 object 且另一方为 string、number 或者 symbol,是的话就会把 object 转为原始类型再进行判断。

每日英语
Happiness is time precipitation, smile is the lonely sad.
幸福是年华的沉淀,微笑是寂寞的悲伤。