--- title: Loading Amber layout: default permalink: "loading-amber.html" parent: Overview --- In this section we will learn how setup an `index.html` page to load amber using [requirejs](http://requirejs.org). #### Amber packages Amber packages are AMD modules. AMD (Asynchronous Module Definition) is a JavaScript API for defining modules and dependencies to be loaded asynchronously. Amber ships with [requirejs](http://requirejs.org), the most popular AMD loader implementation. Create an `index.html` file with the following contents: {% highlight html %} {% endhighlight %} In the next script we define how Amber packages are loaded. Amber comes with several AMD modules to load Amber; the default one -- the one with support for application development and in-browser IDE -- being `amber/devel`. ```html ```

This page is unfinished.