|
@@ -59,13 +59,26 @@ With Amber, client-side web development finally gets the power and productivity
|
|
</ul>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<div class="box last">
|
|
<div class="box last">
|
|
- <h2 id="download">Download</h2>
|
|
|
|
|
|
+ <h2 id="get-started">Getting started</h2>
|
|
<div class="content">
|
|
<div class="content">
|
|
- <p>You can get a copy of Amber from github or clone the <a href="http://github.com/amber-smalltalk/amber">git repository</a>.</p>
|
|
|
|
- <a href="https://github.com/amber-smalltalk/amber/archive/0.12.2.zip">
|
|
|
|
- <img border="0" width="90" src="http://github.com/images/modules/download/zip.png"></a>
|
|
|
|
- <a href="https://github.com/amber-smalltalk/amber/archive/0.12.2.tar.gz">
|
|
|
|
- <img border="0" width="90" src="http://github.com/images/modules/download/tar.png"></a>
|
|
|
|
|
|
+ Amber is shipped as a <a href="http://npmjs.org">npm</a> package for its CLI tools and as a <a href="http://bower.io/">bower</a> package for the client-side.
|
|
|
|
+
|
|
|
|
+ <pre>
|
|
|
|
+ # Install the CLI tool `amber`
|
|
|
|
+ npm install -g amber
|
|
|
|
+
|
|
|
|
+ # Initialize your project as bower package
|
|
|
|
+ cd /path/to/myproject
|
|
|
|
+ bower init
|
|
|
|
+
|
|
|
|
+ # Load amber via bower in your project
|
|
|
|
+ bower install amber --save
|
|
|
|
+
|
|
|
|
+ # Serve amber on localhost:4000
|
|
|
|
+ amber serve
|
|
|
|
+ </pre>
|
|
|
|
+
|
|
|
|
+ The <a href="https://github.com/amber-smalltalk/amber/wiki/Getting-started">Getting started</a> page shows more details on ways to obtain Amber and start a project.
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|