www.newline.co
Open in
urlscan Pro
172.67.71.61
Public Scan
Submitted URL: https://pvc7kqsl.r.us-east-1.awstrack.me/L0/https://sendy.fullstack.io/l/d0dblLcbD1Dtea2uK2WW7w/0MPJFC48YRYRVM6IDeJTeQ/5y0Ad47630my763zIz...
Effective URL: https://www.newline.co/ng-book/2/?utm_source=newline&utm_medium=email&utm_campaign=ngb_ultforms_20200211&utm_content=l4
Submission: On December 14 via api from PT — Scanned from US
Effective URL: https://www.newline.co/ng-book/2/?utm_source=newline&utm_medium=email&utm_campaign=ngb_ultforms_20200211&utm_content=l4
Submission: On December 14 via api from PT — Scanned from US
Form analysis
1 forms found in the DOMPOST https://fd338.infusionsoft.com/app/form/process/39382a029a9788ed21e3885d424f740c
<form accept-charset="UTF-8" action="https://fd338.infusionsoft.com/app/form/process/39382a029a9788ed21e3885d424f740c" class="infusion-form validate" method="POST" target="_blank">
<input name="inf_form_xid" type="hidden" value="39382a029a9788ed21e3885d424f740c">
<input name="inf_form_name" type="hidden" value="ng-book sample chapter form submitted">
<input name="infusionsoft_version" type="hidden" value="1.59.0.47">
<!--
<input class="infusion-field-input-container" id="inf_field_FirstName" name="inf_field_FirstName" type="text" placeholder="First Name" />
-->
<input class="infusion-field-input-container form-control" id="inf_field_Email" name="inf_field_Email" type="email" placeholder="Enter your email address">
<span class="input-group-btn">
<input type="submit" value="Get your free chapter" class="btn-action">
</span>
</form>
Text Content
ng-book Contents Testimonials Blog Get It Now Modern AngularJS ng-book 1 NG-BOOK Learn what you need to use Angular at work. Become and Angular 11 expert today. The best-selling Angular book: over 40,000+ copies sold Download the First Chapter (for free) Buy now "Awesome Book. It's the bible for Angular" - Vijay Ganta, Head of Engineering Staff at Reactore Our customers work at STOP WASTING YOUR TIME WRESTLING WITH INCOMPLETE AND CONFUSING TUTORIALS * ONLINE TUTORIALS ARE INCONSISTENT AND OFTEN OUT OF DATE. One tutorial says one thing and another says something completely different. * MANY TUTORIALS SHOW YOU THE TREES BUT NOT THE FOREST. Some teach the basics, but why is there nothing that shows how to fit all the pieces together? * THE DOCS AREN'T COHESIVE and trying to learn a new framework from piecing together API docs can be tough. * GOOGLING ONLY TAKES YOU SO FAR... There are not many good screencasts or tutorials out there that teach how to maximize the framework. * TIME IS MONEY don't waste it sifting through blogs. * WHAT THE HECK IS A _____? The vocabulary is foreign, how is a directive component different from a bare component? How am I supposed to update my page with one-way data binding? * WHAT'S WITH THE CRAZY SYNTAX? Do I have to learn annotations, strong-typing, and a whole new language just to use Angular now? * HOW DOES IT ALL FIT TOGETHER? Angular 11 has a whole new model of writing apps. How can you know how it all fits together? * STILL NOT HITTING DEADLINES? You still have a job to do and stopping to learn Angular 11 seems like a risky use of time. MODERN TYPESCRIPT ANGULAR 11 HAS A LOT OF NEW SYNTAX There are several new forms of syntax you'll need to learn to use Angular effectively and we teach all of them in the book. Mouse over the red dots below to see each form explained. * ANNOTATIONS The @ is an annotation and it comes from TypeScript * COMPONENTS Components teach your browser new tags * MULTI-LINE STRINGS Using ` backticks allows for easy inline templates * VIEWS Views can be defined by the template option * BRACKETS FOR PARAMETERS Use [] brackets on an attribute to pass parameters to the directive * STAR SYNTAX Use the * on an attribute to use a directive on this element * CLASS SYNTAX TypeScript allows you to define classes using the class syntax * PARENTHESIS FOR VIEW ACTIONS Use () parenthesis to specify action bindings * EVENTS One-way data binding means we fire events instead of modifying data directly * STRONG TYPING TypeScript lets us define collections that contain our custom type Product * ACTIONS Our class defines actions that we can use in our view * 1 @Component({ * 2 selector: 'products-list', * 3 template: ` * 4 <div class="products-list"> * 5 <product-row *ngFor="#let product of products" * 6 [product]="product" * 7 (click)='clicked(product)'> * 8 </product-row> * 9 </div> * 10 ` * 11 }) * 12 * 13 class ProductsList { * 14 @Input() products: Product[]; * 15 @Output() selected: EventEmitter; * 16 * 17 constructor() { * 18 this.selected = new EventEmitter(); * 19 } * 20 * 21 clicked(product) { * 22 this.selected.emit(product); * 23 } * 24 } READY TO MASTER ANGULAR 11? What if you could master the entire framework – with solid foundations – in less time without beating your head against a wall? Imagine how quickly you could work if you knew the best practices and the best tools? Stop wasting your time searching and have everything you need to be productive in one, well-organized place, with complete examples to get your project up without needing to resort to endless hours of research. You will learn what you need to know to work professionally with ng-book: The Complete Book on Angular 11 or get your money back. Download the first chapter (for free) BOOK CONTENTS WHAT YOU'LL LEARN ng-book is designed to teach you step-by-step how to create serious Angular apps: from empty-folder to deployment. Each chapter covers a topic and we provide full code examples for every project in the book. * Writing Your First Angular 11 Application 1 * Binding Data to Components 1.5 * TypeScript 2 * Using Annotations and Types 2.5 * Angular 11 Concepts - How Angular Works 3 * Components, Controllers, and Views 3.5 * Using the Built-in Components 4 * Forms and Validations 5 * Understanding Observables and RxJS 6 * Data Architecture with Observables and RxJS 6.5 * Data Architecture With Redux and Angular 7 * Intermediate Redux with Angular 8 * Dependency Injection and Services 9 * Working with APIs and HTTP 10 * Routing 11 * Hybrid Apps: Porting An Angular 1 App to Angular 11 12 * Writing Advanced Components 13 * Understanding Lifecycle Hooks 13.5 * Testing 14 * Writing Mobile Apps with NativeScript 15 Read the full table of contents GET UP AND RUNNING QUICKLY The first chapter opens with building your first Angular 11 App. Within the first few minutes, you'll know enough to start writing your Angular 11 app. UP TO DATE The book is constantly updated with the latest tips and tricks of Angular. Don't worry about being out-of-date, this book covers the latest release of Angular 11: angular-11.0.0 You'll get access to all updates free for 12 months. BEST PRACTICES Learn Angular 11 best practices, such as: testing, code organization, and how to structure your app for performance. We'll walk through practical, common examples of how to implement complete components of your applications. COMPREHENSIVE TOPICS You'll learn core Angular 11 concepts - from how Angular works under the hood, to rich interactive components, from in-depth testing to real-world applications. APPS WHAT YOU'LL BUILD When you buy ng-book, you're not buying just a book, but dozens of code examples. Every chapter in the book comes with a complete project that uses the concepts in the chapter. A COMPONENT-BASED REDDIT CLONE Learn the basics of component-based architecture, rendering dynamic components, and capturing user input and turning it into interaction A REAL-TIME CHAT APP Use modern data architectures such as RxJS Observables and Redux to build a chat application, built on scalable techniques A YOUTUBE SEARCH-AS-YOU-TYPE APP Make HTTP requests to a remote API and use RxJS Observables to create fast, snappy interactions with a real-time search on YouTube A SPOTIFY SEARCH APP Use Angular's Router to create a multi-page application. Create your own servers using Dependency Injection and call a real API CUSTOM TABS AND UI COMPONENTS Use advanced features for maximum control of your components. We'll build a tab-pane, a custom repeater component, template "transclusion" and more. FORMS WITH VALIDATIONS Build powerful forms that accept user input, and give clear messaging when the input is of an invalid format AND MANY MORE! There are lots of more mini-examples that show you how to write Components, how to use Forms, and how to use APIs 720 PAGES You'll have your first app running and deployed within the first chapter, and then the rest of the book dives deeper into the other areas of Angular 7500+ LINES OF CODE You'll learn core Angular 11 concepts - from how Angular works under the hood, to rich interactive components, from in-depth testing to real-world applications. 4 HOUR SCREENCAST Premium Package customers receive a 4-hour screencast where we walk through building large application. TOO GOOD TO BE TRUE? Grab a sample chapter and check it out for yourself. Sign up for our mailing list and get the sample chapters for free! You'll only receive email about the book and updates. We never send spam, ever and it's easy to unsubscribe. It can take up to an hour to deliver the sample chapter. If you don't receive the sample chapter within the hour, write us and we'll send them to you directly. TESTIMONIALS LOVED BY THE COMMUNITY Our customers love ng-book - See what they have to say! JACOB CHERIATHUNDAM DEVELOPMENT ARCHITECT AT ACCOUNTSPRO / PI SOLUTIONS > "Fantastic work guys! I have no idea where I'd be with Angular 11 without > ng-book. You guys have made this SOOOO much easier to learn and keep up with. > Thanks again..you guys are awesome!" CHARLIE SUTTIE WEB DEVELOPMENT BEGINNER > "Just wanted to let you know I think it's an excellent book. And written in a > really thoughtful way. Thanks!" IVA DOPUĐ MASQUETINA > "ng-book is fantastic, I already made two simple apps of my own... Can't wait > for the future updates!" CHUCK DUNCAN SENIOR SOFTWARE ENGINEER > "I just want to say how happy I am with the book. It is extremely well written > and clear. You present a concept and carefully step through it to explain the > details. I couldn't be happier." MATT DUVALL CO-OWNER & SOFTWARE ENGINEER ATLASIENT > "I'm through chapter one in the Angular2 book and love it. The code samples > with the book are great. I'm an "old Java developer" that fell in love with > Angular" FREDERIC FILIATRAULT SENIOR SOFTWARE ENGINEER AT TEKSYSTEM > "If, like me, you are a seasoned developer and actively looking for a quick > and efficient source of information on the new Angular JS 2, Stop looking! > This is by far, the best reference on the web, period. Very concise, well > structured." BRIAN PRINCE ULTRALINQ, INC. > "I just read the new DI chapter. It has lots of great information. It is the > best at describing this that I have seen. Thanks, great info. Our entire team > uses your book and we really attribute our knowledge and success to your great > book." GRAHAM CHURCHLEY WEB DEVELOPMENT SPECIALIST AT APX > The book has been incredibly useful. We are developing a new application for > release next year and we knew that using alpha software would be a challenge - > but ngBook has helped us considerably. JUSTIN MURPHY INTERP SOLUTIONS > I wanted to let you guys know I am loving the book it really helped me get my > head around rxjs and how powerful observables can be!!! ROBERT DUNAWAY AUTHOR OF TYPESCRIPT KATAS > I haven't seen anyone do a better job. In fact, the rate at which you guys > keep up to date is the best I've ever seen and I hope it's a model other > authors will adopt. The fact that you keep yours up to date is very valuable. JEGOR UGLOV INTEGRATIONS ENGINEER, ZERO TURNAROUND > Just finished ng-book2. I think it is the best learning material one can find > about NG2 today. SEAN MCGILL SENIOR CONSULTANT AT ANEXINET > "Just wanted to say - really good job! I've gather quite a bit of valuable > information from the book so far that was not available on other web sources > (blogs, etc). The book has been a great help as I'm divining into some of > these somewhat bleeding edge tools and topics" SENTHIL CHINNATHAMBI LEAD ANALYST AT SCIENTIFIC GAMES > "Your latest update of Intermediate Redux is awesome. Awesome guys. You guys > are rocking. Very worth to buy this book/samples/video." MIQUEL FONOLLEDA MIQUEL FONOLLEDA, CEO OF ALBIRA SOLUTIONS > "It's the best I've read so far on this topic and it's very well written." VIJAY GANTA VIJAY GANTA, HEAD OF ENGINEERING STAFF AT REACTORE > "Thank you for the awesome book, it's the bible for Angular 11." PACKAGES JOIN 40,000+ STUDENTS ng-book BOOK, SOURCE CODE, VIDEOS, AND SAMPLE APP $79 $99 * Professional-grade Angular ebook content 700+ pages * Completely DRM-free PDF, mobi, and epub formatted ebook * Learn Angular 11 from the inside out * Learn the right way to build Angular 11 apps * Build advanced Angular 11 apps within minutes * Have the complete library available at your fingertips * The code for every sample in the book to get you going quickly * 4 hour long beginner Angular screencast * Complete code for extra screencast sample app List Price: $99 one time Price: $79 one time Get it Complete Library Most popular EVERYTHING IN NG-BOOK AND ACCESS TO EVERY OTHER BOOK IN THE NEWLINE LIBRARY $22/mo $30/mo * Professional-grade Angular ebook content * Learn Angular 11 from the inside out * Learn the right way to build Angular 11 apps * Build advanced Angular 11 apps within minutes * Have the complete library available at your fingertips * The code for every sample in the book to get you going quickly * 4 hour long beginner Angular screencast * Complete code for extra screencast sample app * BONUS: The Beginner's Guide to TypeScript * BONUS: Fullstack GraphQL * BONUS: Fullstack Node.js * BONUS: JavaScript Algorithms * ... and every other book in the newline library * Learn more about newline Pro List Price: $30/mo Price: $22/mo Join now COMPANY-WIDE LICENSE NEED MORE THAN 10 SEATS? Our company-wide license provides everything in the Team package with an unlimited number of seats within your company Get the Company Package THE TEAM MEET THE AUTHORS NATE MURRAY Nate is a full-stack developer and writes code for everything from deep-learning image recognition to mobile games for cats. Nate formerly worked at IFTTT and his background is in data mining and scaling web services. FELIPE COURY Felipe is the co-founder and CTO of Gistia Labs where he leads an Angular.js and Ruby on Rails culture. He has also worked closely with CTOs on implementing Angular.js strategy for large companies. ARI LERNER Hi, I'm Ari. I'm the author of ng-book 1 and I've been teaching Angular for a long time. I've been a member of Google's Angular working group and I've spoken at ng-conf, SF Angular, Mountain View AngularJS and more. CARLOS TABORDA Carlos is the co-founder and director of Gistia Labs, a team that specializes in full stack engineering projects as well as training established development teams in Angular and Ruby on Rails. CONTRIBUTORS NIC RABOY Nic Raboy is an advocate of modern web and mobile development technologies. He has experience in Java, JavaScript, Golang and a variety of frameworks such as Angular, NativeScript, and Apache Cordova. Nic writes about his development experiences related to making web and mobile development easier to understand. Checkout Nic's blog here. BURKE HOLLAND Burke is currently the Director Of Developer Relations for Progress. Burke enjoys JavaScript a lot because it's a giant band aid over his statically typed inadequacies. You can find him on Twitter as @burkeholland. FAQS QUESTIONS? WE HAVE ANSWERS! HOW LONG IS THE BOOK? The current version has 16 chapters totaling 720+ pages, several sample apps totaling over 7,500+ lines of code (TypeScript, non-comment lines) IS NG-BOOK AN UPGRADE TO NG-BOOK 1? No. ng-book is a completely new book and shares no content or code with ng-book 1. Angular 1 and Angular 11 are two different frameworks and ng-book 1 and ng-book are two different books. DO I HAVE TO KNOW ANGULAR 1? Nope! We don't assume that you've used Angular 1. This book teaches Angular 11 from the ground up. Of course, if you've used Angular 1, we'll point out common ideas (because there are many), but ng-book stands on its own ARE THERE FREE UPDATES? Yes! Updates are free for 12-months following purchase. We've faithfully released over 50 updates to ng-book already WHAT ABOUT ANGULAR 11 AND BEYOND? The book will be updated to Angular 11. This update will be free if you've purchased within the 12 months of the update's release. DOES THE VIDEO HAVE CAPTIONS? Yes! The screencast video is has a complete caption track so you can read along as you watch the video. IS THIS A PHYSICAL OR DIGITAL BOOK? This is a completely DRM-free ebook formatted as a pdf/mobi/epub (and a zip with tons of example code) IS THERE A PHYSICAL PRINT VERSION OF THE BOOK? Yes! You can get it on Amazon as a separate purchase HOW UP TO DATE IS THE BOOK? The entire book is up to date with the latest release of Angular 11 angular-11.0.0 WHAT IF I DON'T LIKE IT? If you're unhappy with the book or content, just reach out to us and we'll give you a full refund. There's no risk. OUR PROMISE TO YOU We're committed to keeping ng-book the best resource for learning and using Angular 11. We personally respond to requests for content and we regularly release updates. We're independent authors and we survive by making the highest quality book on Angular 11 as possible. There's no risk: if you're not satisfied for any reason, send us an email and we'll give you a full refund. Download the First Chapter (for free) CONTACT US If you have any concerns, feel free to email us * Resources * ng-book Changelog * Physical Book on Amazon * Angular Consulting * Other Products * ng-book 1: The Complete Book on AngularJS 1.x * Modern AngularJS 1.x * ng-newsletter: Angular News * Protractor Master Class * Get in touch * Questions? * us@fullstack.io