dedejs调用代码(devinputjs0)

  英文:Gergely Nemeth 译文:众成翻译

  zcfy.cc/article/what-x27-s-new-in-node-js-8-5-risingstack-4226.html

  Node.js 8.5 新特性

  最近 Node.js 发布了8.5版本,在这个版本里,Node 添加了3个激动人心的新特性。

  支持 ES Module

  此次版本迭代中,Node 终于支持了开发者呼声最高的 ES 模块提案。这意味着,你可以直接使用import关键字引入需要的模块。 Node 8.5 可以运行如下代码:

  `import fs from'fs'`

  使用es模块,你需要注意,引入文件的扩展名应为 mjs,同时使用 --experimental-modules标识。

  在 Node.js 中使用 ES 模块的限制:

import(), V8引擎将在下一版本支持,

import.meta, V8引擎暂不支持,

不支持 require('./foo.mjs')

  参考文章:https://github.com/nodejs/node/pull/14369/files

  性能监控

  在 Node.js 8.5 版本中,性能监控API 。

  在 Node.js 8.5 中,可以调用 mark() 和 measure() API,监控 Node.js 事件执行时间。

  在 Node.js 8.5 中,你可以这样使用:

  const{performance}= require('perf_hooks')

  performance.mark('A')

  setTimeout(()=> {

dedejs调用代码(devinputjs0)

  performance.mark('B')

  performance.measure('A to B','A','B')

  constentry= performance.getEntriesByName('A to B','measure')

  console.log(entry.duration)

  },10000)

  官方文档:https://nodejs.org/api/perf_hooks.html

  参考文章:https://github.com/nodejs/node/pull/14680/files

  fs 模块添加文件复制功能

  Node.js 8.5 推出了更高级的文件系统,在这个版本你可以直接通过 fs 模块复制某个文件的代码:

  constfs= require('fs')

  fs.copyFile('source.txt','destination.txt',(err)=> {

  if(err){

  // handle error properly, not just console.log

  returnconsole.error(err)

  }

  console.log('source.txt was copied to destination.txt')

  })

  参考文章:https://github.com/nodejs/node/pull/15034/files

  希望通过这些新特性,开发者能做出更令人惊喜的 Node.js 应用。

  参考文章:https://nodejs.org/en/blog/release/v8.5.0/

1、本网站名称:源码村资源网
2、本站永久网址:https://www.yuanmacun.com
3、本网站的文章部分内容可能来源于网络,仅供大家学习与参考,如有侵权,请联系站长进行删除处理。
4、本站一切资源不代表本站立场,并不代表本站赞同其观点和对其真实性负责。
5、本站一律禁止以任何方式发布或转载任何违法的相关信息,访客发现请向站长举报
6、本站资源大多存储在云盘,如发现链接失效,请联系我们我们会第一时间更新。
源码村资源网 » dedejs调用代码(devinputjs0)

1 评论

您需要 登录账户 后才能发表评论

发表评论

欢迎 访客 发表评论