Открыто

Practical Angular 2 Book [ENG]

Тема в разделе "Электронные книги", создана пользователем no matter, 1 фев 2016.

Цена: 1550р.-29%
Взнос: 1092р.

Основной список: 2 участников

Резервный список: 3 участников

  1. 1 фев 2016
    #1
    no matter
    no matter ЧКЧлен клуба
    Practical Angular 2 Book
    With Node/npm, Typescript, SystemJS and Visual Studio Code
    Daniel Schmitz AND Daniel Pedrinha Georgii

    [​IMG]

    Последнее обновление книги 15.09.16
    183 страницы

    Create web applications with the new Angular 2 framework that was totally remodeled with new concepts and implementations.

    This books shows all the steps necessary for the development of SPA (Single Page Application) applications with the brand new Angular 2 (still in beta). With this book you will learn:

    • Complete guide to TypeScript
    • Use of the new Visual Studio Code IDE
    • How to create a project in Angular 2
    • Understand how the SystemJS imports works
    • Components
    • Events
    • Modules
    • Services
    • Template System
    • Using HTTP to connect to a server
    Bonus:
    • How to install and work with Node/NPM
    • How to work with MongoDB via mongolab
    • How to create a complete ReSTful server with Express
    • Final example code in github
    • Final example with login using JSON Web Token
    This book still doesn't addresses the migration from Angular 1 to Angular 2. A new chapter will be added when Angular 2 is officially launched.

    От авторов данной книги открыта складчина на книгу Laravel and AngularJS

    • 1. Introduction
      • 1.1 Prerequisites
        • 1.1.1 Node
        • 1.1.2 Web server
        • 1.1.3 The package.json file
        • 1.1.4 Text editors and IDEs
      • 1.2 Besides Javascript
      • 1.3 TypeScript
      • 1.4 Source code
    • 2. TypeScript
      • 2.1 Installing TypeScript
      • 2.2 Using Visual Studio Code
        • 2.2.1 Detecting changes
        • 2.2.2 Debugging Visual Studio Code
        • 2.2.3 Debug on the browser
      • 2.3 Types
        • 2.3.1 Basic types
        • 2.3.2 Arrays
        • 2.3.3 Enum
        • 2.3.4 Any
        • 2.3.5 Void
      • 2.4 Classes
        • 2.4.1 Constructor
        • 2.4.2 Method and properties visibility
      • 2.5 Heritage
      • 2.6 Accessors (get/set)
      • 2.7 Static Methods
      • 2.8 Interfaces
      • 2.9 Functions
        • 2.9.1 Default value
        • 2.9.2 Optional parameter
      • 2.10 Rest parameters
      • 2.11 Parameters in JSON format
      • 2.12 Modules
        • 2.12.1 Example with Systemjs
        • 2.12.2 Hiding js e map files on VSCode
        • 2.12.3 Using SystemJS
      • 2.13 Decorators (or annotation)
      • 2.14 Conclusion
    • 3. Let’s practice
      • 3.1 AngularBase Project
        • 3.1.1 Setting up the project
        • 3.1.2 Setting up the TypeScript compilation
        • 3.1.3 Creating the first Angular 2 component
        • 3.1.4 Creating the bootstrap
        • 3.1.5 Creating an HTML file
      • 3.2 Creating a playlist
        • 3.2.1 Initial file structure
        • 3.2.2 Creating the application settings file
        • 3.2.3 Adding the bootstrap
        • 3.2.4 Creating the Video class
        • 3.2.5 Creating a simple video list
        • 3.2.6 Creating child components
        • 3.2.7 Formatting the template
        • 3.2.8 Passing values between components
        • 3.2.9 Selecting a video
        • 3.2.10 Events
        • 3.2.11 Event Bubbling
        • 3.2.12 Showing the video details
        • 3.2.13 Editing the selected video data
        • 3.2.14 Editing the title
        • 3.2.15 Creating a new item
        • 3.2.16 Some considerations
      • 3.3 Creating Components
      • 3.4 Hierarchical components
    • 4. Some theory
      • 4.1 Overview
      • 4.2 Module
        • 4.2.1 Library Module
      • 4.3 Component
      • 4.4 Template
        • 4.4.1 Interpolation (Using {{ }})
        • 4.4.2 Template Expressions
      • 4.5 Property Bind
        • 4.5.1 Loops
        • 4.5.2 Pipes (Operator |)
      • 4.6 Metadata (annotation)
      • 4.7 Service
      • 4.8 Dependency injection
        • 4.8.1 Using the @Injectable()
      • 4.9 Using the ngControl
      • 4.10 Showing an error message
      • 4.11 Disabling the submit button of the form
      • 4.12 Submitting the form
      • 4.13 Controlling the form visibility
    • 5. Connecting to a server
      • 5.1 Creating the project
      • 5.2 Using the Http class
      • 5.3 Using services
      • 5.4 Organizing the project
      • 5.5 User model
      • 5.6 User service
      • 5.7 Changing the AppComponent component
      • 5.8 Submitting data
    • 6. Routes
      • 6.1 Applying AngularRoutes
      • 6.2 Splitting the application in smaller parts
      • 6.3 Creating the area where the components will be created
      • 6.4 Setting up the Router
      • 6.5 Creating route links
      • 6.6 Passing parameters
    • 7. Final example - Server
      • 7.1 Creating the RESTful server
      • 7.2 The MongoDB data base
      • 7.3 Creating the project
      • 7.4 The project structure
      • 7.5 Setting up the MondoDB models
      • 7.6 Setting up the Express server
      • 7.7 Testing the server
      • 7.8 Testing the API without Angular
    • 8. Final Example - Client application
      • 8.1 First files
      • 8.2 The base template for the application
      • 8.3 Implementing the routing
        • 8.3.1 Creating the components
        • 8.3.2 Setting up the @RouteConfig
        • 8.3.3 Setting up the menu
        • 8.3.4 Setting up the router-outlet
      • 8.4 Showing Posts
      • 8.5 Login
      • 8.6 Services
        • 8.6.1 LoginService
        • 8.6.2 UserService
        • 8.6.3 HeadersService
      • 8.7 Connecting to the server
      • 8.8 Posts
        • 8.8.1 PostService
      • 8.9 Refactoring the home screen
      • 8.10 Conclusion

     
    Последнее редактирование модератором: 4 ноя 2016
  2. Последние события

    1. maxy666
      maxy666 не участвует.
      3 ноя 2023
    2. Compaq
      Compaq не участвует.
      5 июл 2022
    3. SystemDevil
      SystemDevil не участвует.
      10 апр 2020
    4. kothar
      kothar не участвует.
      23 окт 2018

    Последние важные события

    1. skladchik.com
      Нужен организатор складчины.
      20 июн 2017
    2. skladchik.com
      Celebrate организатор.
      20 июн 2017
    3. skladchik.com
      Нужен организатор складчины.
      23 янв 2017
    4. skladchik.com
      Цена составляет 1550р.
      18 янв 2017
  3. Обсуждение
  4. 4 ноя 2016
    #2
    HaffA
    HaffA БанЗабанен
    Книга обновилась от 15 сентября
     
    1 человеку нравится это.
  5. 6 ноя 2017
    #3
    medifit2011
    medifit2011 ЧКЧлен клуба
    Вышла Angular 4 Book. Может кто нибудь организовать?
     

Поделиться этой страницей