Bläddra i källkod

Updates to documentation with the new amber-cli npm package

Nicolas Petton 11 år sedan
förälder
incheckning
1dee55fd0c
6 ändrade filer med 30 tillägg och 57 borttagningar
  1. 14 51
      1-getting-started.md
  2. 1 1
      2-overview.md
  3. 1 1
      css/style.css
  4. 1 1
      css/style.less
  5. 7 2
      overview/1-installing-amber.md
  6. 6 1
      overview/2-loading-amber.md

+ 14 - 51
1-getting-started.md

@@ -15,77 +15,40 @@ The <a href="overview.html">Overview</a> gives more informations about
 the way Amber is shipped, how to install and load it.
 </p>
 
-To get Amber running, you will need [Bower](http://bower.io) and
+To get Amber running, you will need
 [Node.js](http://nodejs.org). Install the command-line tools with
 `npm` and Amber using bower:
 
 {% highlight sh %}
 # Install the CLI tools
-sudo npm install -g amber
+sudo npm install -g amber-cli
 
 # Create the project structure
 mkdir example-project
 cd example-project/
 
-# The project files will be stored in src/
-mkdir src
-
-# Install Amber as a dependency to our project
-bower install --save amber
+# Create and initialixe a new Amber project
+amber init
 {% endhighlight %}
 
-Create an `index.html` file loading Amber:
-
-{% highlight html %}
-<!DOCTYPE html>
-<html>
-  <head>
-  
-    <script
-      type='text/javascript'
-      src='bower_components/amber/support/requirejs/require.min.js'>
-    </script>
-    <script
-      type='text/javascript'
-      src='bower_components/amber/support/amber.js'>
-    </script>
-    
-    <script type='text/javascript'>
-      require.config({
-        paths: {
-          'example-project': 'src', // mapping for our project files
-        }
-      });
-
-      // Load Amber
-      require(['amber/devel'], function (amber) {
+You will be asked several questions about your new project during the `amber init` phase. Be sure to set a default namespace for your project.
 
-        // Initialize Amber
-        amber.initialize({
-          // Configure the default AMD namespace for new packages
-          "transport.defaultAmdNamespace": "example-project"
-        });
+<p class="note">
+If you have been using older versions of Amber, you may have <code>amber</code> installed globally instead of <code>amber-cli</code>. You need to remove it first: <code>sudo npm uninstall -g amber</code>.
+</p>
 
-        // Start the IDE
-        amber.popupHelios();
-      });
-    </script>
-  </head>
-  <body>
-  </body>
-</html> 
-{% endhighlight %}
+Your project directory now includes Amber as a dependency (using [Bower](http://bower.io), but you don't have to care about this for now), along with several other files, including the index file `index.html`.
 
-Start the standalone webserver:
+All you need to start working is to fire up the standalone amber webserver:
 
 {% highlight sh %}
-amber serve .
+amber serve
 {% endhighlight %}
 
 and open your web browser on
-[http://localhost:4000](http://localhost:4000). Helios -- Amber's IDE
--- will open as a popup window. From there new packages will be
-created with `mypackage` AMD namespace, and saved to the `src/`
+[http://localhost:4000](http://localhost:4000). A button on the page will
+open Helios -- the new IDE -- as a popup window. From there new packages will be
+created with AMD namespace set during the `amber init` phase, and saved to the `src/`
 folder.
 
 ![Helios](/images/helios.png)

+ 1 - 1
2-overview.md

@@ -12,7 +12,7 @@ process and setup.
 
 Amber is shipped both as
 
-- a [npm module](https://npmjs.org/package/amber) for its command-line
+- a [npm module](https://npmjs.org/package/amber-cli) `amber-cli` for its command-line
   interface tools `amber` and `amberc` providing a small server, a compiler and a REPL;
 - a [bower](http://bower.io) component used as dependency for projects
   running in the browser.

+ 1 - 1
css/style.css

@@ -70,7 +70,7 @@ body .container img {
   margin: 20px 0;
 }
 body .container p.note {
-  background: #FFFFDD;
+  background: #FAFADD;
   padding: 10px;
   border-left: 6px solid #BBBB7A;
   margin-left: -6px;

+ 1 - 1
css/style.less

@@ -76,7 +76,7 @@ body {
 
 		p {
 			&.note {
-				background: #FFFFDD;
+				background: #FAFADD;
 				padding: 10px;
 				border-left: 6px solid #BBBB7A;
 				margin-left: -6px;

+ 7 - 2
overview/1-installing-amber.md

@@ -63,18 +63,23 @@ node and npm using respective package managers.
 Once nodejs and npm are installed, evaluate:
 
 {% highlight sh %}
-npm install -g amber
+npm install -g amber-cli
 {% endhighlight %}
 
 Ubuntu users will have to evaluate it with `sudo`:
 
 {% highlight sh %}
-sudo npm install -g amber
+sudo npm install -g amber-cli
 {% endhighlight %}
 
 
 ### 2. The bower component
 
+<p class="note">
+The following section explains how to manually setup Amber using Bower. The <code>amber init</code> command provided by the npm package automates it. Unless you want to (a) understand how it works or (b) setup Amber differently, you can refer to the <a href="/getting-started.html">getting started</a> page.
+</p>
+
+
 The npm package doesn't provide the JavaScript files required to load
 Amber in a page. This is instead provided by the bower package.
 

+ 6 - 1
overview/2-loading-amber.md

@@ -7,7 +7,7 @@ next: "/overview/loading-packages.html"
 ---
 
 In this section we will learn how setup an `index.html` page to load
-nnamber using [requirejs](http://requirejs.org).
+amber using [requirejs](http://requirejs.org).
 
 #### Amber packages
 
@@ -18,6 +18,11 @@ dependencies to be loaded asynchronously.
 Amber ships with [requirejs](http://requirejs.org), the most popular
 AMD loader implementation.
 
+<p class="note">
+The following section explains how to manually create an <code>index.html</code> page that loads Amber. The <code>amber init</code> command provided by the npm package automates it. It is still advised to read this page in order to understand how Amber is loaded and how Amber packages work.
+</p>
+
+
 Create an `index.html` file with the following contents in the root folder of your project, next to the `bower_components` directory:
 
 {% highlight html %}