-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (41 loc) · 1.37 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html>
<head>
<title>seedJS.org</title>
<meta name="description" content="CommonJS package manager and more." />
<meta name="keywords" content="seedjs, CommonJS, nodeJS, javascript" />
<!--[if lt IE 9]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
<link rel="stylesheet" type="text/css" href="/css/screen.css" media="screen, projection" />
</head>
<body>
<header>
<img src="/images/seeds.png" alt="seedJS.org" />
<hgroup>
<h1>SEEDJS</h1>
<h2>Organizing your commonJS libraries</h2>
</hgroup>
</header>
<nav>
<a href="/about">About</a> ~
<a href="/download">Download</a> ~
<a href="/documentation">Documentation</a> ~
<a href="/community">Community</a> ~
<a href="http://blog.seedjs.org/">Blog</a>
</nav>
<section>
<p>List the packages:</p>
<blockquote><code>$ seed list --remote</code></blockquote>
<p>Install a package:</p>
<blockquote><code>$ seed install markdown</code></blockquote>
<p>Use the package:</p>
<blockquote><code>
#!/usr/bin/env seed<br />
var markdown = require('markdown');<br />
markdown.html('__Hello World__');
</code></blockquote>
</section>
<footer>
<p>Copyright © 2010 Sprout Systems, Inc.</p>
</footer>
</body>
</html>