Skip to content

igor-ka/ngcourse-next

 
 

Repository files navigation

Angular Course from rangle.io

This repository contains handout materials and code for rangle.io's AngularJS training course, focusing on building Angular 1.x applications the Angular 2 way.

This is meant to be used as a part of the course, which is normally offered as a 2-3 day event. See http://rangle.io/javascript-training.html for more information.

The Handouts

See the handout for the handout. You can either view it in your browser or build it into a PDF using the instructions in the README file in the handout directory.

The Code

The repository also contains the codebase that we'll work on in throughout the course. The project has a server and the client component. This repository contains only the client code. The server code is available at https://github.com/rangle/ngcourse-api/. You do not need the server code to run the front end, however. Instead, you can access the API server deployed to http://ngcourse.herokuapp.com/ and will develop the client-side code on your own machine.

The students should start by checking out the "base" branch for their session, which has all the necessary configurations but no actual client side code. The "master" branch contains the final state of the project.

You will then need to build the front end using:

  npm install

The above installs npm modules and typings for the course

Once you've done that, you can access the front-end of the project, by running a simple gulp task gulp serve within the root directory of the project.

  gulp serve

Then point your browser to http://localhost:8080/

Any other static web server should do as well.

Application bundle suitable for deployment can be generated using the following task:

gulp bundle

The output of the bundle will go into output/dist, which can be served by any static web server.

If you see a login screen, you are all set. You can login as "alice" with password "x", at which point you should see a list of tasks.

About

A course that teaches how to build Angular 1 applications the Angular 2 way.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 62.2%
  • JavaScript 24.7%
  • HTML 11.8%
  • CSS 1.3%