Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorisaacs <i@izs.me>2010-06-18 03:50:13 +0400
committerisaacs <i@izs.me>2010-06-18 03:50:13 +0400
commite571108758bf52400dab37a176b5f10e3e0de91f (patch)
tree6187682eacaf04af98082f1b24453d4716627fea /html/index.html
parent89a6de51eaea139d012b7e70c3680418f4e76362 (diff)
html for the website
Diffstat (limited to 'html/index.html')
-rw-r--r--html/index.html36
1 files changed, 36 insertions, 0 deletions
diff --git a/html/index.html b/html/index.html
new file mode 100644
index 000000000..08610ca22
--- /dev/null
+++ b/html/index.html
@@ -0,0 +1,36 @@
+<!doctype html>
+
+<html>
+<head>
+<style>
+html { background:#202050 }
+body { background:#ddd; width:600px; border:10px solid #fff; margin:2em auto; padding:2em }
+h1 {
+ font-size:200px;
+ line-height:1;
+ font-family:"gubblebum-blocky", monospace;
+ color:#f00;
+ text-align:center;
+ padding:0;
+ margin:0 auto;
+ text-indent:-999em;
+ height:202px;
+ width:519px;
+ background:url(npm.png) center;
+}
+p { margin:1em 0 0; padding:0 }
+a { color:#f00; text-decoration:none; }
+a:hover { text-decoration:underline; }
+</style>
+ <title>npm - Node Package Manager</title>
+</head>
+<h1>npm</h1>
+
+<p>npm is a package manager for <a href="http://nodejs.org/">node</a>. You can use it to install
+ and publish your node programs. It manages dependencies and does other cool stuff.</p>
+
+<p>Not much here at the moment. Check out <a href="http://github.com/isaacs/npm">the
+ git repository</a>.</p>
+
+</body>
+</html>