
前端
Anlior
要努力?不,要热爱。
展开
-
【聚沙成塔】Linux环境下NodeJs升级
一、背景 开发服前端项目有段时间没维护,今日执行sudo npm run dev时报错: /var/app/current/node_modules/opn/index.js:11 const wslToWindowsPath = async path => { ^^^^ SyntaxError: Unexpected identifier at createScript (vm.js:56:10) at Object.r原创 2020-12-28 15:19:12 · 505 阅读 · 0 评论 -
【聚沙成塔】将Mon Jun 01 2020 00:00:00 GMT+0800 (中国标准时间) 转换为 2020-06
//打印出来的标准时间 const month = 'Mon Jun 01 2020 00:00:00 GMT+0800 (中国标准时间)' //初始化成日期对象 const d = new Date(month) //拼接成2020-06 const strMonth = d.getFullYear() +'-' + self.addZeroPrefixForMonth(d.getMonth() + 1) //月份 9 => 09 addZeroPrefixF..原创 2020-12-02 14:45:53 · 5462 阅读 · 0 评论