2015-10-14 23:25:19 -04:00
|
|
|
include ../../../_includes/_util-fns
|
|
|
|
|
2015-11-10 13:31:46 -05:00
|
|
|
:marked
|
2015-10-14 23:25:19 -04:00
|
|
|
Let's start from zero and build a super simple Angular 2 application in TypeScript.
|
|
|
|
|
2015-08-08 16:55:53 -04:00
|
|
|
.callout.is-helpful
|
2015-10-14 23:25:19 -04:00
|
|
|
header Don't want TypeScript?
|
2015-11-10 13:31:46 -05:00
|
|
|
:marked
|
2015-10-14 23:25:19 -04:00
|
|
|
Although we're getting started in TypeScript, you can also write Angular 2 apps
|
|
|
|
in JavaScript and Dart by selecting either of those languages from the combo-box in the banner.
|
2015-08-08 16:55:53 -04:00
|
|
|
|
|
|
|
.l-main-section
|
2015-12-10 21:29:14 -05:00
|
|
|
:marked
|
|
|
|
## See It Run!
|
2015-10-14 23:25:19 -04:00
|
|
|
|
2015-12-10 21:29:14 -05:00
|
|
|
Running the [live example](/resources/live-examples/quickstart/ts/plnkr.html)
|
|
|
|
is the quickest way to see an Angular 2 app come to life.
|
|
|
|
|
|
|
|
Clicking that link fires up a browser, loads the sample in [plunker](http://plnkr.co/ "Plunker"),
|
|
|
|
and displays a simple message:
|
2015-10-14 23:25:19 -04:00
|
|
|
|
2015-12-10 21:29:14 -05:00
|
|
|
figure.image-display
|
|
|
|
img(src='/resources/images/devguide/quickstart/my-first-app.png' alt="Output of quickstart app")
|
|
|
|
:marked
|
|
|
|
Here is the file structure:
|
2015-12-15 04:53:24 -05:00
|
|
|
.filetree
|
|
|
|
.file angular2-quickstart
|
|
|
|
.children
|
|
|
|
.file app
|
|
|
|
.children
|
|
|
|
.file app.component.ts
|
|
|
|
.file boot.ts
|
|
|
|
.file index.htm
|
|
|
|
.file license.md
|
2015-12-10 21:29:14 -05:00
|
|
|
:marked
|
|
|
|
Functionally, it's an `index.html` and two TypeScript files in an `app/` folder.
|
|
|
|
We can handle that!
|
|
|
|
|
|
|
|
Of course we won't build many apps that only run in plunker.
|
|
|
|
Let's follow a process that's closer to what we'd do in real life.
|
|
|
|
|
|
|
|
1. Set up our development environment
|
2015-12-14 18:44:50 -05:00
|
|
|
1. Write the Angular root component for our app
|
2015-12-10 21:29:14 -05:00
|
|
|
1. Bootstrap it to take control of the main web page
|
|
|
|
1. Write the main page (`index.html`)
|
|
|
|
|
|
|
|
.l-sub-section
|
|
|
|
:marked
|
|
|
|
We really can build the QuickStart from scratch in five minutes
|
|
|
|
if we follow the instructions and ignore the commentary.
|
|
|
|
|
|
|
|
Most of us will be interested in the "why" as well as the "how" and that will take longer.
|
|
|
|
:marked
|
2015-10-14 23:25:19 -04:00
|
|
|
|
2015-10-16 00:51:13 -04:00
|
|
|
.l-main-section
|
2015-12-10 21:29:14 -05:00
|
|
|
:marked
|
|
|
|
## Development Environment
|
|
|
|
|
|
|
|
We'll need a place to stand (the application project folder), some libraries,
|
|
|
|
some TypeScript configuration and the TypeScript-aware editor of your choice.
|
|
|
|
|
|
|
|
### Create a new project folder
|
|
|
|
|
|
|
|
code-example(format="").
|
|
|
|
mkdir angular2-quickstart
|
|
|
|
cd angular2-quickstart
|
|
|
|
:marked
|
|
|
|
### Add the libraries we need
|
|
|
|
|
|
|
|
We recommend the **npm** package manager for acquiring and managing our development libraries.
|
2015-10-14 23:25:19 -04:00
|
|
|
|
2015-12-10 21:29:14 -05:00
|
|
|
.l-sub-section
|
2015-11-10 13:31:46 -05:00
|
|
|
:marked
|
2015-12-10 21:29:14 -05:00
|
|
|
Don't have npm?
|
|
|
|
[Get it now](https://docs.npmjs.com/getting-started/installing-node "Installing Node.js and updating npm")
|
|
|
|
because we're going to use it now and repeatedly throughout this documentation.
|
|
|
|
:marked
|
|
|
|
Add a **package.json** file to the project folder and copy/paste the following:
|
|
|
|
+makeJson('quickstart/ts/package.1.json', null, 'package.json')(format=".")
|
2015-10-14 23:25:19 -04:00
|
|
|
|
2015-12-10 21:29:14 -05:00
|
|
|
.l-sub-section
|
2015-11-10 13:31:46 -05:00
|
|
|
:marked
|
2015-12-10 21:29:14 -05:00
|
|
|
Itching to know the details? We explain in the [appendix below](#package-json)
|
|
|
|
:marked
|
|
|
|
Install these packages by opening a terminal window (command window in Windows) and
|
|
|
|
running this npm command.
|
|
|
|
code-example(format="").
|
|
|
|
npm install
|
|
|
|
:marked
|
|
|
|
.l-sub-section
|
2015-11-10 13:31:46 -05:00
|
|
|
:marked
|
2015-12-10 21:29:14 -05:00
|
|
|
A few scary messages in red may appear in the console. Ignore them.
|
|
|
|
What matters is is if it finishes cleanly. If it does, continue on.
|
|
|
|
If it doesn't, time to stop and find out why.
|
|
|
|
:marked
|
|
|
|
### Configure TypeScript
|
2015-08-08 16:55:53 -04:00
|
|
|
|
2015-12-10 21:29:14 -05:00
|
|
|
We must guide the TypeScript compiler with very specific settings.
|
|
|
|
|
|
|
|
Add a **tsconfig.json** file to the project folder and copy/paste the following:
|
|
|
|
+makeJson('quickstart/ts/tsconfig.1.json', null, 'tsconfig.json')(format=".")
|
|
|
|
.l-sub-section
|
2015-11-10 13:31:46 -05:00
|
|
|
:marked
|
2015-12-10 21:29:14 -05:00
|
|
|
We explore the `tsconfig.json` in an [appendix below](#tsconfig)
|
|
|
|
:marked
|
|
|
|
**We're all set.** Let's write some code.
|
2015-08-08 16:55:53 -04:00
|
|
|
|
2015-10-14 23:25:19 -04:00
|
|
|
.l-main-section
|
2015-12-10 21:29:14 -05:00
|
|
|
:marked
|
|
|
|
## Our First Angular Component
|
|
|
|
|
|
|
|
The *Component* is the most fundamental of Angular concepts.
|
|
|
|
A component manages a view - a piece of the web page where we display information
|
|
|
|
to the user and respond to user feedback.
|
|
|
|
|
|
|
|
Technically, a component is a class that controls a view template.
|
|
|
|
We'll write a lot of them as we build Angular apps. This is our first attempt
|
|
|
|
so we'll keep it ridiculously simple.
|
|
|
|
|
|
|
|
### Create an application source sub-folder
|
|
|
|
|
|
|
|
We like to keep our application code in a sub-folder off the root called `app/`.
|
|
|
|
Execute the following command in the console window.
|
|
|
|
code-example(format="").
|
|
|
|
mkdir app
|
|
|
|
cd app
|
|
|
|
:marked
|
|
|
|
### Add the component file
|
|
|
|
Now add a file named **app.component.ts** and paste the following lines:
|
|
|
|
+makeExample('quickstart/ts/app/app.component.ts', null, 'app/app.component.ts')(format=".")
|
|
|
|
:marked
|
2015-12-14 18:44:50 -05:00
|
|
|
Let's review this file in detail, starting at the bottom where we define a class.
|
|
|
|
|
2015-12-10 21:29:14 -05:00
|
|
|
### The Component class
|
|
|
|
At the bottom of the file is an empty, do-nothing class named `AppComponent`.
|
|
|
|
When we're ready to build a substantive application,
|
|
|
|
we can expand this class with properties and application logic.
|
|
|
|
Our `AppComponent` class is empty because we don't need it to do anything in this QuickStart.
|
|
|
|
|
|
|
|
### Modules
|
|
|
|
Angular apps are modular. They consist of many files each dedicated to a purpose.
|
|
|
|
|
2015-12-14 18:44:50 -05:00
|
|
|
Most application files *export* one thing such as a component.
|
|
|
|
Our `app.component` file exports the `AppComponent`.
|
|
|
|
+makeExample('quickstart/ts/app/app.component.ts', 'export', 'app/component.ts (export)')(format=".")
|
|
|
|
:marked
|
|
|
|
The act of exporting turns the file into a module.
|
|
|
|
The name of the file (without extension) is usually the name of the module.
|
|
|
|
Accordingly, '*app.component*' is the name of our first module.
|
|
|
|
|
2015-12-10 21:29:14 -05:00
|
|
|
A more sophisticated application would have child components that descended from
|
|
|
|
`AppComponent` in a visual tree.
|
2015-12-14 18:44:50 -05:00
|
|
|
A more sophisticated app would have more files and modules, at least as many as it had components.
|
|
|
|
|
2015-12-10 21:29:14 -05:00
|
|
|
Quickstart isn't sophisticated; one component is all we need.
|
|
|
|
Yet modules play a fundamental organizational role in even this small app.
|
|
|
|
|
|
|
|
Modules rely on other modules. In TypeScript Angular apps, when we need something
|
2015-12-14 18:44:50 -05:00
|
|
|
provided by another module, we import it.
|
|
|
|
When another module needs to refer to `AppComponent`, it imports the `AppComponent` *symbol* like this:
|
|
|
|
+makeExample('quickstart/ts/app/boot.ts', 'app-component','app/boot.ts (import)')(format=".")
|
2015-12-10 21:29:14 -05:00
|
|
|
:marked
|
2015-12-14 18:44:50 -05:00
|
|
|
Angular is also modular. It is a collection of library modules.
|
|
|
|
Each library is itself a module made up of several, related feature modules.
|
|
|
|
|
|
|
|
When we need something from Angular, we import it from an Angular library module.
|
|
|
|
We need something from Angular right now to help us define metadata about our component.
|
2015-12-10 21:29:14 -05:00
|
|
|
|
|
|
|
### Component Metadata
|
|
|
|
A class becomes an Angular component when we give it metadata.
|
|
|
|
Angular needs the metadata to understand how to construct the view
|
|
|
|
and how the component interacts with other parts of the application.
|
|
|
|
|
2015-12-14 18:44:50 -05:00
|
|
|
We define a component's metadata with the Angular `Component` function.
|
|
|
|
We access that function by importing it from the primary Angular library,`angular2/core`.
|
|
|
|
+makeExample('quickstart/ts/app/app.component.ts', 'import', 'app/component.ts (import)')(format=".")
|
|
|
|
:marked
|
2015-12-10 21:29:14 -05:00
|
|
|
In TypeScript we apply that function to the class as a *decorator*
|
|
|
|
by prefixing it with the **@** symbol and invoking it
|
|
|
|
just above the component class:
|
|
|
|
+makeExample('quickstart/ts/app/app.component.ts', 'metadata', 'app/app.component.ts (metadata)')
|
|
|
|
:marked
|
|
|
|
`@Component` tells Angular that this class *is an Angular component*.
|
|
|
|
The configuration object passed to the `@Component` method has two
|
|
|
|
fields, a `selector` and a `template`.
|
2015-10-14 23:25:19 -04:00
|
|
|
|
2015-12-14 18:44:50 -05:00
|
|
|
The `selector` specifies a simple CSS selector for a host HTML element named `my-app`.
|
2015-12-10 21:29:14 -05:00
|
|
|
Angular creates and displays an instance of our `AppComponent`
|
|
|
|
wherever it encounters a `my-app` element in the host HTML.
|
|
|
|
|
|
|
|
.alert.is-helpful
|
2015-11-10 13:31:46 -05:00
|
|
|
:marked
|
2015-12-10 21:29:14 -05:00
|
|
|
Remember the `my-app` selector! We'll need that information when we write our `index.html`
|
|
|
|
:marked
|
|
|
|
The `template` property holds the component's companion template.
|
|
|
|
A template is a form of HTML that tells Angular how to render a view.
|
|
|
|
Our template is a single line of HTML announcing "My First Angular App".
|
|
|
|
|
|
|
|
Now we need something to tell Angular to load this component.
|
|
|
|
|
|
|
|
### Give it the boot
|
|
|
|
|
|
|
|
Add a new file , `boot.ts`, to the `app/` folder as follows:
|
|
|
|
+makeExample('quickstart/ts/app/boot.ts', null, 'app/boot.ts')(format=".")
|
|
|
|
:marked
|
|
|
|
We need two things to launch the application:
|
|
|
|
1. Angular's browser `bootstrap` function
|
|
|
|
1. The application root component that we just wrote.
|
|
|
|
|
|
|
|
We import both. Then we call `bootstrap`, passing in the **root component type**,
|
|
|
|
`AppComponent`.
|
2015-12-14 18:44:50 -05:00
|
|
|
|
2015-12-10 21:29:14 -05:00
|
|
|
.l-sub-section
|
|
|
|
:marked
|
2015-12-14 18:44:50 -05:00
|
|
|
Learn why we import `bootstrap` from `angular2/platform/browser`
|
2015-12-14 20:45:43 -05:00
|
|
|
and why we create a separate *boot.ts* file in the [appendix below](#boot).
|
2015-12-10 21:29:14 -05:00
|
|
|
:marked
|
|
|
|
We've asked Angular to launch the app in a browser with our component at the root.
|
|
|
|
Where will Angular put it?
|
2015-08-08 16:55:53 -04:00
|
|
|
|
|
|
|
.l-main-section
|
2015-12-10 21:29:14 -05:00
|
|
|
:marked
|
|
|
|
## Add the `index.html`
|
|
|
|
|
|
|
|
Angular displays our application in a specific location on our `index.html`.
|
|
|
|
It's time to create that file.
|
|
|
|
|
|
|
|
We won't put our `index.html` in the `app/` folder.
|
|
|
|
We'll locate it **up one level, in the project root folder**.
|
|
|
|
|
|
|
|
code-example(format="").
|
|
|
|
cd ..
|
|
|
|
:marked
|
|
|
|
Now create the`index.html` file and paste the following lines:
|
2015-12-14 18:44:50 -05:00
|
|
|
+makeExample('quickstart/ts/index.html', null, 'index.html')(format=".")
|
2015-12-10 21:29:14 -05:00
|
|
|
:marked
|
|
|
|
There are three noteworthy sections of HTML:
|
2015-08-08 16:55:53 -04:00
|
|
|
|
2015-12-10 21:29:14 -05:00
|
|
|
1. We load the JavaScript libraries we need.<br/>
|
2015-08-08 16:55:53 -04:00
|
|
|
|
2015-12-10 21:29:14 -05:00
|
|
|
2. We configure something called `System` and ask it to import the
|
|
|
|
boot file we just wrote.
|
2015-08-08 16:55:53 -04:00
|
|
|
|
2015-12-10 21:29:14 -05:00
|
|
|
3. We add the `<my-app>` tag in the `<body>`. **This is where our app lives!**
|
|
|
|
|
|
|
|
Something has to find and load our application modules. We're using **SystemJS** to do that.
|
|
|
|
There are other choices and we're not saying SystemJS is the best. We like it and it works.
|
|
|
|
|
|
|
|
The specifics of SystemJS configuration are out of bounds.
|
|
|
|
We'll briefly describe this particular configuration in the [appendix below](#systemjs).
|
|
|
|
|
|
|
|
When Angular calls the `bootstrap` function in `boot.ts`, it reads the `AppComponent`
|
|
|
|
metadata, finds the `my-app` selector, locates an element tag named `my-app`,
|
|
|
|
and loads our application between those tags.
|
2015-08-08 16:55:53 -04:00
|
|
|
|
2015-10-14 23:25:19 -04:00
|
|
|
.l-main-section
|
2015-12-10 21:29:14 -05:00
|
|
|
:marked
|
|
|
|
## Compile and run!
|
|
|
|
|
|
|
|
Open a terminal window and enter this command:
|
|
|
|
code-example(format="").
|
2015-12-13 15:36:37 -05:00
|
|
|
npm run go
|
2015-12-10 21:29:14 -05:00
|
|
|
:marked
|
|
|
|
That command runs two parallel node processes
|
|
|
|
1. The TypeScript compiler in watch mode
|
|
|
|
1. A static server called **lite-server** that loads `index.html` in a browser
|
|
|
|
and refreshes the browser when application files change
|
2015-10-14 23:25:19 -04:00
|
|
|
|
2015-12-10 21:29:14 -05:00
|
|
|
In a few moments, a browser tab should open and display
|
2015-10-14 23:25:19 -04:00
|
|
|
|
2015-12-10 21:29:14 -05:00
|
|
|
figure.image-display
|
|
|
|
img(src='/resources/images/devguide/quickstart/my-first-app.png' alt="Output of quickstart app")
|
2015-10-14 23:25:19 -04:00
|
|
|
|
2015-12-10 21:29:14 -05:00
|
|
|
:marked
|
|
|
|
Congratulations! We are in business.
|
2015-08-08 16:55:53 -04:00
|
|
|
|
2015-12-10 21:29:14 -05:00
|
|
|
.alert.is-helpful
|
2015-11-10 13:31:46 -05:00
|
|
|
:marked
|
2015-12-10 21:29:14 -05:00
|
|
|
If you see `Loading...` displayed instead, see the
|
|
|
|
[Browser ES6 support appendix](#es6support).
|
|
|
|
:marked
|
|
|
|
### Make some changes
|
|
|
|
|
|
|
|
Try changing the message to "My SECOND Angular 2 app".
|
|
|
|
|
|
|
|
The TypeScript compiler and `lite-server` are watching.
|
|
|
|
They should detect the change, recompile the TypeScript into JavaScript,
|
|
|
|
refresh the browser, and display the revised message.
|
|
|
|
|
|
|
|
It's a nifty way to develop an application!
|
|
|
|
|
|
|
|
We close the terminal window when we're done to terminate both the compiler and the server.
|
2015-08-08 16:55:53 -04:00
|
|
|
|
2015-10-14 23:25:19 -04:00
|
|
|
.l-main-section
|
2015-12-10 21:29:14 -05:00
|
|
|
:marked
|
|
|
|
## Final structure
|
|
|
|
Our final project folder structure looks like this:
|
|
|
|
code-example(format="").
|
|
|
|
angular2-quickstart
|
2015-10-14 23:25:19 -04:00
|
|
|
├── node_modules
|
2015-12-10 21:29:14 -05:00
|
|
|
├── app
|
|
|
|
│ ├── app.component.ts
|
|
|
|
| └── boot.ts
|
|
|
|
├── index.html
|
|
|
|
├── package.json
|
|
|
|
└── tsconfig.json
|
|
|
|
:marked
|
|
|
|
And here are the files:
|
|
|
|
+makeTabs(`
|
|
|
|
quickstart/ts/app/app.component.ts,
|
|
|
|
quickstart/ts/app/boot.ts,
|
|
|
|
quickstart/ts/index.html,
|
|
|
|
quickstart/ts/package.1.json,
|
2015-12-14 18:44:50 -05:00
|
|
|
quickstart/ts/tsconfig.1.json
|
2015-12-10 21:29:14 -05:00
|
|
|
`,null,
|
|
|
|
`app/app.component.ts, app/boot.ts, index.html,package.json, tsconfig.json`)
|
|
|
|
:marked
|
2015-08-08 16:55:53 -04:00
|
|
|
|
|
|
|
.l-main-section
|
2015-12-10 21:29:14 -05:00
|
|
|
:marked
|
|
|
|
## Wrap Up
|
|
|
|
Our first application doesn't do much. It's basically "Hello, World" for Angular 2.
|
2015-10-14 23:25:19 -04:00
|
|
|
|
2015-12-10 21:29:14 -05:00
|
|
|
We kept it simple in our first pass: we wrote a little Angular component,
|
|
|
|
we added some JavaScript libraries to `index.html`, and launched with a
|
|
|
|
static file server. That's about all we'd expect to do for a "Hello, World" app.
|
2015-08-08 16:55:53 -04:00
|
|
|
|
2015-12-10 21:29:14 -05:00
|
|
|
**We have greater ambitions.**
|
2015-08-08 16:55:53 -04:00
|
|
|
|
2015-12-10 21:29:14 -05:00
|
|
|
The good news is that the overhead of setup is (mostly) behind us.
|
|
|
|
We'll probably only touch the `package.json` to update libraries.
|
|
|
|
We'll likely open `index.html` only if we need to add a library or some css stylesheets.
|
2015-08-08 16:55:53 -04:00
|
|
|
|
2015-12-10 21:29:14 -05:00
|
|
|
We're about to take the next step and build a small application that
|
|
|
|
demonstrates the great things we can build with Angular 2.
|
2015-08-08 16:55:53 -04:00
|
|
|
|
2015-12-10 21:29:14 -05:00
|
|
|
Join us on the [Tour of Heroes Tutorial](./tutorial)!
|
2015-08-08 16:55:53 -04:00
|
|
|
|
|
|
|
|
|
|
|
.l-main-section
|
2015-12-10 21:29:14 -05:00
|
|
|
:marked
|
|
|
|
## Appendices
|
|
|
|
The balance of this chapter is a set of appendices that
|
|
|
|
elaborate some of the points we covered quickly above.
|
|
|
|
|
|
|
|
There is no essential material here. Continued reading is for the curious.
|
|
|
|
|
2015-12-14 18:44:50 -05:00
|
|
|
.l-main-section
|
|
|
|
:marked
|
|
|
|
<a id="es6support"></a>
|
|
|
|
### Appendix: Browser ES6 support
|
|
|
|
Angular 2 relies on some ES2015 features, most of them found in modern
|
|
|
|
browsers. Some browsers (including IE 11) require a shim to support the
|
|
|
|
the needed functionality.
|
|
|
|
Try loading the following shim *above* the other scripts in the `index.html`:
|
|
|
|
|
|
|
|
code-example(language="html" format=".").
|
|
|
|
<script src="node_modules/es6-shim/es6-shim.js"></script>
|
|
|
|
:marked
|
|
|
|
|
|
|
|
|
2015-08-08 16:55:53 -04:00
|
|
|
.l-main-section
|
2015-12-10 21:29:14 -05:00
|
|
|
:marked
|
|
|
|
<a id="package-json"></a>
|
|
|
|
### Appendix: package.json
|
|
|
|
|
|
|
|
[npm](https://docs.npmjs.com/) is a popular package manager and Angular application developers rely on it
|
|
|
|
to acquire and manage the libraries their apps require.
|
|
|
|
|
|
|
|
We specify the packages we need in an npm [package.json](https://docs.npmjs.com/files/package.json) file.
|
|
|
|
|
|
|
|
The Angular team suggests the packages listed in the `dependencies` and `devDependencies`
|
|
|
|
sections listed in this file:
|
|
|
|
|
|
|
|
+makeJson('quickstart/ts/package.1.json',{ paths: 'dependencies, devDependencies'}, 'package.json (dependencies)')(format=".")
|
|
|
|
:marked
|
|
|
|
.l-sub-section
|
2015-11-10 13:31:46 -05:00
|
|
|
:marked
|
2015-12-10 21:29:14 -05:00
|
|
|
There are other possible package choices.
|
|
|
|
We're recommending this particular set that we know work well together.
|
|
|
|
Play along with us for now.
|
|
|
|
Feel free to make substitutions later to suit your tastes and experience.
|
|
|
|
:marked
|
|
|
|
A `package.json` has an optional **scripts** section where we can define helpful
|
|
|
|
commands to perform development and build tasks.
|
|
|
|
We've included a number of such scripts in our suggested `package.json`:
|
|
|
|
+makeJson('quickstart/ts/package.1.json',{ paths: 'scripts'}, 'package.json (scripts)')(format=".")
|
|
|
|
:marked
|
|
|
|
We've seen how we can run the compiler and a server at the same time with this command:
|
|
|
|
code-example(format="").
|
2015-12-13 15:36:37 -05:00
|
|
|
npm run go
|
2015-12-10 21:29:14 -05:00
|
|
|
:marked
|
|
|
|
We execute npm scripts in that manner: `npm run` + *script-name*. Here's what these scripts do:
|
|
|
|
|
|
|
|
* `npm run tsc` - run the TypeScript compiler once
|
|
|
|
|
|
|
|
* `npm run tsc:w` - run the TypeScript compiler in watch mode;
|
|
|
|
the process keeps running, awaiting changes to TypeScript files and re-compiling when it sees them.
|
|
|
|
|
|
|
|
* `npm run lite` - run the [lite-server](https://www.npmjs.com/package/lite-server),
|
|
|
|
a light-weight, static file server, written and maintained by [John Papa](http://johnpapa.net/)
|
|
|
|
with excellent support for Angular apps that use routing.
|
2015-12-14 18:44:50 -05:00
|
|
|
|
|
|
|
|
2015-10-14 23:25:19 -04:00
|
|
|
<!-- Move this to the Style Guide when we have one -->
|
2015-08-08 16:55:53 -04:00
|
|
|
.l-main-section
|
2015-12-10 21:29:14 -05:00
|
|
|
:marked
|
|
|
|
<a id="tsconfig"></a>
|
|
|
|
### Appendix: TypeScript configuration
|
|
|
|
We added a TypeScript configuration file (`tsconfig.json`) to our project to
|
|
|
|
guide the compiler as it generates JavaScript files.
|
|
|
|
Get details about `tsconfig.json` from the official
|
|
|
|
[TypeScript wiki](https://github.com/Microsoft/TypeScript/wiki/tsconfig.json).
|
|
|
|
|
|
|
|
The options and flags in the file we provided are essential.
|
|
|
|
|
|
|
|
We'd like a moment to discuss the `noImplicitAny` flag.
|
|
|
|
TypeScript developers disagree about whether it should be `true` or `false`.
|
|
|
|
There is no correct answer and we can change the flag later.
|
|
|
|
But our choice now can make a difference in larger projects so it merits
|
|
|
|
discussion.
|
|
|
|
|
|
|
|
When the `noImplicitAny` flag is `false`,
|
|
|
|
the compiler silently defaults the type of a variable to `any` if it cannot infer
|
|
|
|
the type based on how the variable is used. That's what we mean by "implicitly `any`".
|
|
|
|
|
|
|
|
When the `noImplicitAny` flag is `true` and the TypeScript compiler cannot infer
|
|
|
|
the type, it still generates the JavaScript files but
|
|
|
|
it also reports an error.
|
|
|
|
|
|
|
|
In this QuickStart and many of the other samples in this Developer Guide
|
|
|
|
we set the `noImplicitAny` flag to `false`.
|
|
|
|
|
|
|
|
Developers who prefer stricter type checking should set the `noImplicitAny` flag to `true`.
|
|
|
|
We can still set a variable's type to `any` if
|
|
|
|
that seems like the best choice. We'd be doing so explicitly after
|
|
|
|
giving the matter some thought.
|
|
|
|
|
|
|
|
If we set the `noImplicitAny` flag to `true`, we may get implicit index errors as well.
|
|
|
|
If we feel these are more annoying than helpful,
|
|
|
|
we can suppress them with the following additional flag.
|
|
|
|
```
|
|
|
|
"suppressImplicitAnyIndexErrors":true
|
|
|
|
```
|
2015-11-10 13:31:46 -05:00
|
|
|
|
2015-11-06 08:30:02 -05:00
|
|
|
.l-main-section
|
2015-12-10 21:29:14 -05:00
|
|
|
:marked
|
|
|
|
<a id="systemjs"></a>
|
|
|
|
### Appendix: SystemJS Configuration
|
|
|
|
|
|
|
|
The QuickStart uses [SystemJS](https://github.com/systemjs/systemjs) to load application
|
|
|
|
and library modules.
|
|
|
|
There are alternatives that work just fine including the well-regarded [webpack](https://webpack.github.io/).
|
|
|
|
SystemJS happens to be a good choice but we want to be clear that it was a choice and not a preference.
|
|
|
|
|
|
|
|
All module loaders require configuration and all loader configuration
|
|
|
|
becomes complicated rather quickly as soon as the file structure diversifies and
|
|
|
|
we start thinking about building for production and performance.
|
|
|
|
|
|
|
|
We suggest becoming well-versed in the loader of your choice.
|
|
|
|
.l-sub-section
|
|
|
|
:marked
|
|
|
|
Learn more about SystemJS configuration [here](https://github.com/systemjs/systemjs/blob/master/docs/config-api.md).
|
|
|
|
:marked
|
2015-12-14 18:44:50 -05:00
|
|
|
With those cautions in mind, what are we doing here?
|
2015-12-10 21:29:14 -05:00
|
|
|
+makeExample('quickstart/ts/index.html', 'systemjs', 'index.html (System configuration')(format=".")
|
|
|
|
:marked
|
|
|
|
The `packages:` line tells SystemJS what to do when it sees a request for a
|
|
|
|
module from the `app/` folder.
|
|
|
|
|
|
|
|
Our QuickStart makes such requests when one of its
|
|
|
|
application TypeScript files has an import statement like this:
|
|
|
|
+makeExample('quickstart/ts/app/boot.ts', 'app-component', 'boot.ts (excerpt)')(format=".")
|
|
|
|
:marked
|
|
|
|
Notice that the module name (after `from`) does not mention a filename extension.
|
|
|
|
The `packages:` configuration tells SystemJS to default the extension to 'js', a JavaScript file.
|
|
|
|
|
|
|
|
That makes sense because we transpile TypeScript to JavaScript
|
|
|
|
*before* running the application.
|
|
|
|
|
|
|
|
.l-sub-section
|
|
|
|
:marked
|
|
|
|
In the live example on plunker we transpile (AKA compile) to JavaScript in the browser
|
|
|
|
on the fly. That's fine for a demo. That's not our preference for development or production.
|
|
|
|
|
|
|
|
We recommend transpiling (AKA compiling) to JavaScript during a build phase
|
|
|
|
before running the application for several reasons including:
|
|
|
|
|
|
|
|
* We see compiler warnings and errors that are hidden from us in the browser.
|
|
|
|
|
|
|
|
* Pre-compilation simpifies the module loading process and
|
|
|
|
it's much easier to diagnose problem when this is a separate, external step.
|
|
|
|
|
|
|
|
* Pre-compilation means a faster user experience because the browser doesn't waste time compiling.
|
|
|
|
|
|
|
|
* We iterate development faster because we only re-compile changed files.
|
|
|
|
We notice the difference as soon as the app grows beyond a handful of files.
|
|
|
|
|
|
|
|
* pre-compilation fits into a continuous integration process of build, test, deploy.
|
|
|
|
:marked
|
|
|
|
The `System.Import` call tells SystemJS to import the `boot` file
|
|
|
|
(`boot.js` ... after transpiling `boot.ts`, remember?).
|
|
|
|
`boot` is where we tell Angular to launch the application.
|
|
|
|
|
|
|
|
All other modules are loaded upon request
|
|
|
|
either by an import statement or by Angular itself.
|
|
|
|
|
|
|
|
.l-main-section
|
|
|
|
:marked
|
2015-12-14 18:44:50 -05:00
|
|
|
<a id="boot"></a>
|
|
|
|
### Appendix: ***boot.ts***
|
2015-12-10 21:29:14 -05:00
|
|
|
|
2015-12-14 18:44:50 -05:00
|
|
|
#### Bootstrapping is platform-specific
|
2015-12-14 23:22:13 -05:00
|
|
|
We import the `bootstrap` function from `angular2/platform/browser`,
|
|
|
|
not `angular2/core`. There's a good reason.
|
|
|
|
|
|
|
|
We only call "core" those capabilities that are the same across all platform targets.
|
|
|
|
True, most Angular applications run only in a browser and we'll call the bootstrap function from
|
|
|
|
this library most of the time. It's pretty "core" if we're always writing for a browser.
|
2015-12-14 18:44:50 -05:00
|
|
|
|
2015-12-14 23:22:13 -05:00
|
|
|
But it is possible to load a component in a different enviroment.
|
|
|
|
We might load it on a mobile device with [Apache Cordova](https://cordova.apache.org/)
|
|
|
|
We might wish to render the first page of our application on the server
|
|
|
|
to improve launch performance or facilitate
|
|
|
|
[SEO](http://static.googleusercontent.com/media/www.google.com/en//webmasters/docs/search-engine-optimization-starter-guide.pdf).
|
|
|
|
|
|
|
|
These targets require a different kind of bootstrap function that we'd import from a different library.
|
docs(tutorial): combines all 4 sections + revisions/updates to a.53, hides 3&4
closes #488
ToH History (oldest-to-latest):
----------------------------
created code example/snippets files for use with +makeExample, replace usage of "pre.prettyprint.lang-bash" with this: code-example(format="." language="bash").
fixed spelling errors in examples file path used by +makeExample
changed usage of "code-example" to "+makeExample"
adding code example/snippets files used in toh 1
fixed example file paths, replaced "pre.prettyprint.lang-bash" with "code-example. "
(docs) toh-pt3 initial state
created code examples for display in jade, starting conversion of Google doc and trying +makeExample rendering
all text copied from doc to jade, still some styling and formatting to perform
completed conversion and styling, moved toh3 example files to "tutorial" folder under _examples
created specific code example files for chapter toh 3 and re-pathed references in +makeExample
minor edit
docs) toh combined - initial combined commit
updated ToH for a.52
tons of changes, including de-kebab-ing, removed src folder, updated tsconfig too
fixing snippets using incorrect ending input tag
using inline html and css for the app.component.
ToH Part 1 Code: updated the imports, removed obsolete directive delcarations
ToH Code Part 1: updated to use imports, interface. will hit others soon
toh part 1: ngModel fix
toh part1: removed obsolete story that referred to how we used to have to import and declare all directives we used. yay!
ToH Part 1: updated to use `boot.ts` and `app.component.ts`. this affected the partials, snippets, and the story.
toh part 1: using `npm run go`
toh parts 1 -4: modified all places to use `npm run go`
toh part 1: refactor for jade
toh part 1: fixing the code samples
toh part 2: seeping through the story
toh part 2: fixing snippets.
toh part 2: replaced ngClass with class.selected
toh part 2: removed whitespace
toh part 2: added final state to the code
toh: fixing paths
toh part 4: fixing src/app path to app
toh part 3: fixing folder path
toh part 2: fixed typo
toh part 2: typo on ngModel
toh part 2: added ngif
toh part 2: removed old hero property. moved the details lower, where we need it
toh index: updated hero list image to show consistent styling as the other images here
QS spelling error (targes -> targets)
tweeks: space and ngIF
2015-11-15 21:04:43 -05:00
|
|
|
|
2015-12-14 18:44:50 -05:00
|
|
|
#### Why do we create a separate ***boot.ts*** file?
|
|
|
|
|
|
|
|
The *boot.ts* file is tiny. This is just a QuickStart.
|
|
|
|
We could have folded its few lines into the `app.component` file
|
|
|
|
and spared ourselves some complexity.
|
|
|
|
|
|
|
|
We didn't for what we believe to be good reasons:
|
|
|
|
1. Doing it right is easy
|
|
|
|
1. Testability
|
|
|
|
1. Reusability
|
|
|
|
1. Separation of concerns
|
|
|
|
1. We learned about import and export
|
|
|
|
|
|
|
|
#### It's easy
|
|
|
|
Sure it's an extra step and an extra file. How hard is that in the scheme of things?
|
|
|
|
|
|
|
|
We'll see that a separate `boot.ts` is beneficial for *most* apps
|
|
|
|
even if it isn't critical for the QuickStart.
|
|
|
|
Let's develop good habits now while the cost is low.
|
|
|
|
|
|
|
|
#### Testability
|
|
|
|
We should be thinking about testability from the beginning
|
|
|
|
even if we know we'll never test the QuickStart.
|
|
|
|
|
|
|
|
It is difficult to unit test a component when there is a call to `bootstrap` in the same file.
|
|
|
|
As soon as we load the component file to test the component,
|
|
|
|
the `bootstrap` function tries to load the application in the browser.
|
|
|
|
It throws an error because we're not expecting to run the entire application,
|
|
|
|
just test the component.
|
|
|
|
|
|
|
|
Relocating the `bootstrap` function to `boot.ts` eliminates this spurious error
|
|
|
|
and leaves us with a clean component module file.
|
|
|
|
|
|
|
|
#### Reusability
|
|
|
|
We refactor, rename, and relocate files as our application evolves.
|
|
|
|
We can't do any of those things while the file calls `bootstrap`.
|
|
|
|
we can't move it.
|
|
|
|
We can't reuse the component in another application.
|
|
|
|
We can't pre-render the component on the server for better performance.
|
|
|
|
|
|
|
|
#### Separation of concerns
|
|
|
|
A component's responsibility is to present and manage a view.
|
|
|
|
|
|
|
|
Launching the application has nothing to do with view management.
|
|
|
|
That's a separate concern. The friction we're encountering in testing and reuse
|
|
|
|
stems from this unnecessary mix of responsibilities.
|
|
|
|
|
|
|
|
#### Import/Export
|
|
|
|
|
|
|
|
While writing a separate `boot.ts` file we learned an essential Angular skill:
|
|
|
|
how to export from one module and import into another.
|
|
|
|
We'll do a lot of that as we learn more Angular.
|