mirror of https://github.com/lukechilds/node.git
Browse Source
- Improved styling of download links. - index.html#download now redirects to /download/ - Added missing hyphens, and added the missing "and 64-bit" for the Mac Installer.v0.8.7-release
Golo Roden
13 years ago
committed by
isaacs
10 changed files with 111 additions and 185 deletions
@ -0,0 +1,86 @@ |
|||
<!doctype html> |
|||
<html lang="en"> |
|||
<head> |
|||
<meta charset="utf-8"> |
|||
<style> |
|||
ul { |
|||
padding: 0; |
|||
margin: 0; |
|||
} |
|||
</style> |
|||
<link type="image/x-icon" rel="icon" href="../favicon.ico"> |
|||
<link type="image/x-icon" rel="shortcut icon" href="../favicon.ico"> |
|||
<link rel="stylesheet" href="../pipe.css"> |
|||
<link rel="stylesheet" href="../sh_vim-dark.css"> |
|||
<link rel="alternate" |
|||
type="application/rss+xml" |
|||
title="node blog" |
|||
href="http://feeds.feedburner.com/nodejs/123123123"> |
|||
<title>node.js</title> |
|||
</head> |
|||
<body class="int"> |
|||
<div id="intro" class="interior"> |
|||
<a href="/" title="Go back to the home page"> |
|||
<img id="logo" src="http://nodejs.org/images/logo.png" alt="node.js"> |
|||
</a> |
|||
</div> |
|||
<div id="content" class="clearfix"> |
|||
<div id="column2" class="interior"> |
|||
<ul> |
|||
<li><a href="/" class="home">Home</a></li> |
|||
<li><a href="/download/" class="download current">Download</a></li> |
|||
<li><a href="/about/" class="about">About</a></li> |
|||
<li><a href="http://search.npmjs.org/" class="npm">npm Registry</a></li> |
|||
<li><a href="http://nodejs.org/api/" class="docs">Docs</a></li> |
|||
<li><a href="http://blog.nodejs.org" class="blog">Blog</a></li> |
|||
<li><a href="/community/" class="community">Community</a></li> |
|||
<li><a href="/logos/" class="logos">Logos</a></li> |
|||
<li><a href="http://jobs.nodejs.org/" class="jobs">Jobs</a></li> |
|||
</ul> |
|||
<p class="twitter"><a href="http://twitter.com/nodejs">@nodejs</a></p> |
|||
</div> |
|||
<div id="column1" class="interior row"> |
|||
<p> |
|||
Download the Node.js source code or a pre-built installer for your platform, and start developing today. |
|||
</p> |
|||
</div> |
|||
<div id="column1" class="interior row"> |
|||
<h2 id="installers" class="installers">Installers</h2> |
|||
<p> |
|||
To install Node.js and npm use the appropriate installer for your platform, or discover <a href="https://raw.github.com/joyent/node/__VERSION__/ChangeLog">what's new</a> in <strong>Node.js __VERSION__</strong>. |
|||
</p> |
|||
<p> |
|||
<strong>Mac OS X Installer</strong>: <a href="http://nodejs.org/dist/__VERSION__/node-__VERSION__.pkg">32- and 64-bit (.pkg)</a><br /> |
|||
<strong>Windows Installer</strong>: <a href="http://nodejs.org/dist/__VERSION__/node-__VERSION__-x86.msi">32-bit (.msi)</a> or |
|||
<a href="http://nodejs.org/dist/__VERSION__/x64/node-__VERSION__-x64.msi">64-bit (.msi)</a><br /> |
|||
<strong>Linux Binaries</strong>: <a href="http://nodejs.org/dist/__VERSION__/node-__VERSION__-linux-x86.tar.gz">32-bit (.tar.gz)</a> or |
|||
<a href="http://nodejs.org/dist/__VERSION__/node-__VERSION__-linux-x64.tar.gz">64-bit (.tar.gz)</a><br /> |
|||
<strong>Solaris Binaries</strong>: <a href="http://nodejs.org/dist/__VERSION__/node-__VERSION__-sunos-x86.tar.gz">32-bit (.tar.gz)</a> or |
|||
<a href="http://nodejs.org/dist/__VERSION__/node-__VERSION__-sunos-x64.tar.gz">64-bit (.tar.gz)</a> |
|||
</p> |
|||
<p> |
|||
Alternatively, you can install Node.js using various <a href="https://github.com/joyent/node/wiki/Installing-Node.js-via-package-manager">package managers</a>. |
|||
</p> |
|||
</div> |
|||
<div id="column1" class="interior row"> |
|||
<h2 id="apiDocumentationAndSourceCode">API Documentation and Source Code</h2> |
|||
<p> |
|||
If you are unsure about how to use Node.js, the <a href="http://nodejs.org/docs/__VERSION__/api/">API documentation</a> is there to help. |
|||
</p> |
|||
<p> |
|||
You can also have a look at the <a href="http://nodejs.org/dist/__VERSION__/node-__VERSION__.tar.gz">source code</a>, or contribute to Node.js by |
|||
forking the <a href="https://github.com/joyent/node">GitHub repository</a> and creating pull requests. |
|||
</p> |
|||
<p> |
|||
There exist some <a href="http://nodejs.org/dist/__VERSION__">other release files</a> as well. |
|||
</p> |
|||
</div> |
|||
<div id="column1" class="interior row"> |
|||
<h2 id="license">License</h2> |
|||
<p> |
|||
You may also be interested in the <a href="https://raw.github.com/joyent/node/__VERSION__/LICENSE">license</a> of Node.js. |
|||
</p> |
|||
</div> |
|||
</div> |
|||
</body> |
|||
</html> |
Loading…
Reference in new issue