forked from nodejs/iojs.org
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
97 changed files
with
615 additions
and
4,452 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
ul.blog-posts { | ||
list-style: none; | ||
} | ||
ul.blog-posts li { | ||
margin-top: 1rem; | ||
} | ||
.post-date { | ||
font-size: 1rem; | ||
color: #666; | ||
} | ||
.h2 { | ||
color: #000; | ||
font-size: 1.4rem; | ||
} | ||
.main-content a { | ||
text-decoration: underline; | ||
} | ||
.main-content a:hover { | ||
text-decoration: none; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,4 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="utf-8"> | ||
<title i18n-title>io.js - JavaScript I/O</title> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width,initial-scale=1"> | ||
<meta name="description" content="io.js is an npm compatible platform originally based on node.js"> | ||
<meta name="keywords" content="iojs, io.js, io js, javascript io, uv, libuv, node-forward, node forward, node, node.js, node.js forward, nodejs, nodejs forward, javascript"> | ||
<link href="https://fonts.googleapis.com/css?family=Lato:400,700" rel="stylesheet"> | ||
<link href="../main.css" rel="stylesheet"> | ||
<link href="../mobile.css" rel="stylesheet"> | ||
<link href="../es6.css" rel="stylesheet"> | ||
<link rel="icon" href="/images/1.0.0.ico" type="image/x-icon"> | ||
<link rel="apple-touch-icon" href="/images/apple-touch-icon-1.0.0.png"> | ||
<meta property="og:image" content="https://iojs.org/images/1.0.0.png"> | ||
<meta property="og:image:type" content="image/png"> | ||
<meta property="og:image:width" content="1369"> | ||
<meta property="og:image:height" content="1563"> | ||
</head> | ||
|
||
<body markdown-page="es6"> | ||
|
||
<header> | ||
<div class="content"> | ||
<a href="index.html" class="logo" i18n-logo-text>io.js</a> | ||
<div class="spacer"></div> | ||
<a href="faq.html" i18n-faq-link>常见问题</a> | ||
<a href="es6.html" i18n-es6-link>ES6</a> | ||
<a href="https://iojs.org/api/" i18n-api-link>API 文档</a> | ||
</div> | ||
</header> | ||
|
||
<div class="content clearfix" i18n-content><h1>io.js 运行 ES6</h1> | ||
<!DOCTYPE html><html lang="cn"><head><meta charset="utf-8"><title>io.js - JavaScript I/O</title><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width,initial-scale=1"><meta name="description" content="io.js is an npm compatible platform originally based on node.js"><meta name="keywords" content="iojs, io.js, io js, javascript io, uv, libuv, node-forward, node forward, node, node.js, node.js forward, nodejs, nodejs forward, javascript"><link href="https://fonts.googleapis.com/css?family=Lato:400,700" rel="stylesheet"><link href="/website/main.css" rel="stylesheet"><link href="/website/mobile.css" rel="stylesheet"><link href="/website/es6.css" rel="stylesheet"><link rel="icon" href="/images/1.0.0.ico" type="image/x-icon"><link rel="apple-touch-icon" href="/images/apple-touch-icon-1.0.0.png"><meta property="og:image" content="https://iojs.org/images/1.0.0.png"><meta property="og:image:type" content="image/png"><meta property="og:image:width" content="1369"><meta property="og:image:height" content="1563"></head><body markdown-page="es6"><header><div class="content"><a href="/website/cn/index.html" class="logo">io.js</a><div class="spacer"></div><a href="/website/cn/faq.html">常见问题</a><a href="/website/cn/es6.html">ES6</a><a href="https://iojs.org/api/">API 文档</a></div></header><div class="content clearfix main-content"><h1>io.js 运行 ES6</h1> | ||
<p>io.js 是基于 <a href="https://code.google.com/p/v8/">V8</a> 引擎的较新版本构建的。通过持续跟进最新版的 V8 引擎,我们可以保证及时地为开发者带来最新的 <a href="http://www.ecma-international.org/publications/standards/Ecma-262.htm">JavaScript ECMA-262 规范</a> 中的语言特性,同时也能得到性能和稳定性的提升。</p> | ||
<p>io.js 1.2.0 集成了 V8 4.1.0.14 版本,其中包含的 ES6 特性远超 joyent/[email protected] 集成的 3.26.33 版本所包含的。</p> | ||
<h2>干掉 --harmony</h2> | ||
|
@@ -117,19 +83,4 @@ <h2>如何查阅某一版本的 io.js 所集成的 V8 的版本?</h2> | |
<p>io.js 提供了简单的方式,用于列出所有依赖关系,及各自的版本集成情况(基于 <code>process</code> 全局对象的特殊二进制文件)。例如,要查看 V8 引擎版本,可以在你的终端里面输入以下命令:</p> | ||
<pre><code class="language-sh">iojs -p process.versions.v8 | ||
</code></pre> | ||
</div> | ||
|
||
<footer class="content"> | ||
<nav> | ||
<a href="https://github.com/iojs/io.js/issues" i18n-issues-link>GitHub Issues</a><!-- | ||
--><a href="https://github.com/iojs" i18n-org-link>GitHub Org</a><!-- | ||
--><a href="https://webchat.freenode.net/?channels=io.js" i18n-irc-link>IRC Chat</a><!-- | ||
--><a href="http://logs.libuv.org/io.js/latest" i18n-irc-logs-link>Logs</a><!-- | ||
--><a href="https://github.com/iojs/io.js/blob/v1.x/GOVERNANCE.md#readme" i18n-gov-link>项目管理</a> | ||
</nav> | ||
</footer> | ||
|
||
<!-- See something you like? Want to help? Visit https://github.com/iojs/website to contribute --> | ||
</body> | ||
|
||
</html> | ||
</div><footer class="content"><nav><a href="https://github.com/iojs/io.js/issues">GitHub Issues</a><a href="https://github.com/iojs">GitHub Org</a><a href="https://webchat.freenode.net/?channels=io.js">IRC Chat</a><a href="http://logs.libuv.org/io.js/latest">Logs</a><a href="https://github.com/iojs/io.js/blob/v1.x/GOVERNANCE.md#readme">项目管理</a></nav></footer></body><!-- See something you like? Want to help? Visit https://github.com/iojs/website to contribute--></html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.