Book Image

AngularJS by Example

By : Chandermani
Book Image

AngularJS by Example

By: Chandermani

Overview of this book

<p>AngularJS makes web JavaScript web development less painful and more organized – it’s unsurprising that today it’s one of the most popular tools in web development.</p> <p>AngularJS by Example helps you get started with this essential web development framework quickly and easily, guiding you through AngularJS by showing you how to create your own real-world applications. By adopting this approach, you can bridge the gap between learning and doing immediately, as you follow the examples to learn the impressive features of Angular and experience a radically simple–and powerful–approach to web development.</p> <p>You’ll begin by creating a simple Guess the Number game, which will help you get to grips with the core components of Angular, including its MVC architecture, and learn how each part interacts with one another. This will give you a solid foundation of knowledge from which you can begin to build more complex applications, such as a 7 minute workout app and an extended personal trainer app. By creating these applications yourself, you will find out how AngularJS manages client-server interactions and how to effectively utilize directives to develop applications further. You’ll also find information on testing your app with tools such as Jasmine, as well as tips and tricks for some of the most common challenges of developing with AngularJS.</p> <p>AngularJS by Example is a unique web development book that will help you get to grips with AngularJS and explore a powerful solution for developing single page applications.</p>
Table of Contents (15 chapters)
AngularJS by Example
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Setting up a development server


The development web server that we choose greatly depends on the platform that we work on and the backend we support. However, for apps in this book that target purely client-side development, any web server will do.

My recommendation would be to use the http-server module of Node.js. Since Node.js is available cross-platform, we can install Node.js from http://nodejs.org/.

Once Node.js is installed, installing the http-server module and running the http server are easy. Open the command line and type the following command:

npm install http-server –g

This installs the HTTP server at the global level.

To run the server, just navigate to the folder where the app code resides, or open the folder from where we want to serve static files, and type this:

http-server

And that's it! We have an HTTP server running at http://localhost:8080 that can serve files from the current directory.

Note

The http-server module does support some startup configurations. Check the documentation at https://github.com/nodeapps/http-server.

The http-server module is just one of the many options available out there. Depending upon the platform we are on, we can also try Python's SimpleHTTPServer module, Mongoose, or any such web server.

Let's build Guess the Number!.