html5中文学习网

您的位置: 首页 > 网站及特效实例 > javascript特效 » 正文

在NodeJS中启用ECMAScript 6小结(windos以及Linux)_node.js_

[ ] 已经帮助:人解决问题

在NodeJS中启用ES6 (harmony) 版本:QgiHTML5中文学习网 - HTML5先行者学习网

开始吧,QgiHTML5中文学习网 - HTML5先行者学习网

Linux下启用QgiHTML5中文学习网 - HTML5先行者学习网
来源: http://h3manth.com/new/blog/2013/es6-on-nodejs/QgiHTML5中文学习网 - HTML5先行者学习网

Node version : v0.11.6QgiHTML5中文学习网 - HTML5先行者学习网

先来看一看版本 harm ;) :QgiHTML5中文学习网 - HTML5先行者学习网

$ node --v8-options | grep harm --harmony_typeof (enable harmony semantics for typeof) --harmony_scoping (enable harmony block scoping) --harmony_modules (enable harmony modules (implies block scoping)) --harmony_symbols (enable harmony symbols (a.k.a. private names)) --harmony_proxies (enable harmony proxies) --harmony_collections (enable harmony collections (sets, maps, and weak maps)) --harmony_observation (enable harmony object observation (implies harmony collections) --harmony_typed_arrays (enable harmony typed arrays) --harmony_array_buffer (enable harmony array buffer) --harmony_generators (enable harmony generators) --harmony_iteration (enable harmony iteration (for-of)) --harmony_numeric_literals (enable harmony numeric literals (0o77, 0b11)) --harmony_strings (enable harmony string) --harmony_arrays (enable harmony arrays) --harmony (enable all harmony features (except typeof))

QgiHTML5中文学习网 - HTML5先行者学习网
不错,我们可以通过awk来启用所有的ES6新特性,需要跟 strict一起使用QgiHTML5中文学习网 - HTML5先行者学习网

$ node --use-strict $(node --v8-options | grep harm | awk '{print $1}' | xargs) #ES6

QgiHTML5中文学习网 - HTML5先行者学习网
Windows下启用(通用方法)QgiHTML5中文学习网 - HTML5先行者学习网
来源: http://stackoverflow.com/questions/13351965/what-does-node-harmony-doQgiHTML5中文学习网 - HTML5先行者学习网

node --harmony app.js

QgiHTML5中文学习网 - HTML5先行者学习网
看一个例子QgiHTML5中文学习网 - HTML5先行者学习网
作用域QgiHTML5中文学习网 - HTML5先行者学习网

关键字  let 可以让我们将变量的作用范围限定在一个代码块中QgiHTML5中文学习网 - HTML5先行者学习网

'use strict';if (1) {  let b = 2;  console.log(b);  //2}console.log(typeof b); //undefined

QgiHTML5中文学习网 - HTML5先行者学习网

(责任编辑:)
推荐书籍
推荐资讯
关于HTML5先行者 - 联系我们 - 广告服务 - 友情链接 - 网站地图 - 版权声明 - 人才招聘 - 帮助