Giter Site home page Giter Site logo

shyamseshadri / angular-up-and-running Goto Github PK

View Code? Open in Web Editor NEW
145.0 145.0 123.0 6.8 MB

Code repository for the Angular: Up & Running Book, which covers Angular 2+, using TypeScript and more...

TypeScript 71.41% JavaScript 11.78% HTML 14.65% CSS 2.16%

angular-up-and-running's People

Contributors

shyamseshadri avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

angular-up-and-running's Issues

Sample code is already obsolete!!

I am an experienced .Net developer and was taking a Udemy course in AngularJS when I realized that it was obsolete. So I got this book to re-start with the latest Angular. But now I find that this book's code, published only THREE months ago, is already obsolete. I can't even get 'ng serve' to work because my downloaded Angular/CLI version (6.2.1) requires an angular.json file rather than the deprecated .angular-cli.json file. When I Google the issue, I'm told to run the 'ng update @angular/cli --migrate-only --from=1.7.3' command to replace the old file (3 months old) with the new file. But it does not work!!
Mr. Sheshadri, you really need to update all your code and make it available on git. As it is this book is worthless to a novice Angular learner. When I download and install Node.js, typescript, and Angular/CLI as instructed, and then download your codebase from GIT, nothing works. Sorry, but the truth hurts.

chapter 3, exercise 3: example code shows numbers 0-19 instead 1-20.

The exercise description is as follows

Move to display a drop down with quantity selection from 1 to 20 (generated via ngFor).

The example code gives you numbers 0-19.
component

this.quantities = []; for (let i = 1; i < 21; i++) { this.quantities.push(i); }

It could be fixed as below or some way similar. :)

this.quantities = []; for (let i = 1; i < 21; i++) { this.quantities.push(i); }

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.