본문 바로가기

리디 접속이 원활하지 않습니다.
강제 새로 고침(Ctrl + F5)이나 브라우저 캐시 삭제를 진행해주세요.
계속해서 문제가 발생한다면 리디 접속 테스트를 통해 원인을 파악하고 대응 방법을 안내드리겠습니다.
테스트 페이지로 이동하기

Hands-On Full Stack Web Development with Angular 6 and Laravel 5 상세페이지

Hands-On Full Stack Web Development with Angular 6 and Laravel 5

Become fluent in both frontend and backend web development with Docker, Angular and Laravel

  • 관심 0
소장
전자책 정가
17,000원
판매가
17,000원
출간 정보
  • 2018.07.31 전자책 출간
듣기 기능
TTS(듣기) 지원
파일 정보
  • PDF
  • 414 쪽
  • 6.8MB
지원 환경
  • PC뷰어
  • PAPER
ISBN
9781788836647
ECN
-
Hands-On Full Stack Web Development with Angular 6 and Laravel 5

작품 정보

▶Book Description
Angular, considered as one of the most popular and powerful frontend frameworks, has undergone a major overhaul to embrace emerging web technologies so that developers can build cutting-edge web applications.

This book gives you practical knowledge of building modern full-stack web apps from scratch using Angular with a Laravel Restful back end.

The book begins with a thorough introduction to Laravel and Angular and its core concepts like custom errors messages, components, routers, and Angular-cli, with each concept being explained first, and then put into practice in the case-study project.

With the basics covered, you will learn how sophisticated UI features can be added using NgBootstrao and a component-based architecture. You will learn to extend and customize variables from Bootstrap CSS framework.

You will learn how to create secure web application with Angular and Laravel using token based authentication. Finally, you will learn all about progressive web applications and build and deploy a complete fullstack application using Docker and Docker-compose.

By the end of this book, you'll gain a solid understanding of Angular 6 and how it interacts with a Laravel 5.x backend

▶What You Will Learn
⦁ Explore the core features of Angular 6 to create sophisticated user interfaces
⦁ Use Laravel 5 to its full extent to create a versatile backend layer based on RESTful APIs
⦁ Configure a web application in order to accept user-defined data and persist it into the database using server-side APIs
⦁ Build an off-line-first application using service-worker and manifest file
⦁ Deal with token based authentication on single page application (SPA).
⦁ Secure your application against threats and vulnerabilities in a time efficient way
⦁ Deploy using Docker and Docker-compose

▶Key Features
⦁ Explore the latest features of Angular and Laravel to build applications that are powerful, consistent, and maintainable
⦁ Develop modern user interfaces with a reusable component-based architecture using Angular 6 and Bootstrap 4
⦁ Learn how to build secure backend APIs with Laravel

▶Who This Book Is For
This book is for developers who are new to Angular and Laravel. Knowledge of HTML, CSS, and scripting languages such as JavaScript and PHP is required.

The book's content covers all of the phases of the software engineering life cycle by looking at modern tools and techniques, including –. but not limited to –. RESTful APIs, token-based authentication, database configurations, and Docker containers and images.

▶What this book covers
⦁ Chapter 1, Understanding the Core Concepts of Laravel 5, introduces the Laravel framework as a powerful tool for the development of web applications and explores the use of the paradigm convention over configuration. We will see how, out of the box, Laravel has all of the features that we need to build modern web applications, token-based authentication, routes, resources, and more. Also, we will find out why the Laravel framework is one of the most popular PHP frameworks for developing web applications today. We will learn how to set up the environment, look at the Laravel application lifecycle, and see how to use the Artisan CLI.

⦁ Chapter 2, The Benefits of TypeScript, looks at how TypeScript enables you to write consistent JavaScript code. We examine the features that it includes, such as static typing and other features that are very common in object-oriented languages. Also, we look at using the new features of the latest version of ECMAScript, and find out TypeScript helps us to write clean and well-organized code. In this chapter, we will see the benefits of TypeScript over traditional JavaScript, discover how to use static typing, and understand how to use Interfaces, Classes, and Generics, as well as Import and Export classes.

⦁ Chapter 3, Understanding the Core Concepts of Angular 6, dives into Angular, which is one of the most popular frameworks for the development of frontend web applications. In addition to being very versatile and complete, Angular also includes the Angular CLI tool for generating modules, components, services, and many more utilities. In this chapter, we will learn how to use the new version of the Angular CLI, understand the core concepts of Angular, and get to grips with the component lifecycle.

⦁ Chapter 4, Building the Baseline Backend Application, is where we will start building the sample application. In this chapter, we are going to create a Laravel application using the RESTful architecture. We will take a closer look at some points that we mentioned briefly in the first chapter, such as the use of Docker containers to configure our environment and also how to keep our database populated. we will even check out how to use the MySQL Docker container, how to use migrations and database seed, and also how to create consistent documentation with Swagger UI.

⦁ Chapter 5, Creating a RESTful API Using Laravel - Part 1, will introduce RESTful APIs. You will learn how to build a RESTful API using the core elements of the Laravel framework—.controllers, routes, and eloquent Object Relational Mapping (ORM). We also show some basic wireframes for the application we are building. In addition, we will look more closely at some relationships that you will need to be familiar with, such as one-toone, one-to-many, and many-to-many.

⦁ Chapter 6, Creating a RESTful API Using Laravel - Part 2, continues our project of building a sample API, though, at that point, we will still have a long way to go in Laravel. We will learn how to use some features that are very common among web applications, such as token-based authentication, request validation, and custom error messages; we will also see how to use Laravel resources. Also, we will see how to use the Swagger documentation to test our API.

⦁ Chapter 7, Progressive Web Applications with Angular CLI, covers the changes that have affected angular-cli.json since the previous Angular version. The angular-cli.json file has now improved its support for multiple applications. We will see how to use the ng add a command to create a PWA and how we can organize our project structure to leave a single basis for a scalable project. Also, we will see how to use the Angular CLI to create servicework and manifest files.

⦁ Chapter 8, Dealing with Angular Router and Components, is where we come to one of the most important parts of Single-Page Applications (SPAs), which is the use of routes. Luckily, the Angular framework provides a powerful tool for dealing with application routing: the @angular/router dependency. In this chapter, we will learn how to use some of these features, such as router outlets and child-views, and we will see how to create masterdetail pages. Also, we will start to create the frontend views.

⦁ Chapter 9, Creating Services and User Authentication, is one where we will create many new things, and we will be performing some refactoring to memorize import details. This is a great way to learn new things in a regular and progressive way. Also, we will dig deeper into the operation and use of the HTTP module of the Angular framework, now known as httpClient. In addition, we will look at interceptors, handling errors, using authorization headers, and how to protect application routes using route guards.

⦁ Chapter 10, Frontend Views with Bootstrap 4 and NgBootstrap, explains how to include the Bootstrap CSS framework and NgBootstrap components inside a running Angular application using the new ng add command from Angular CLI. Also, we will see how to connect our Angular services with components and how to use the backend API to put it all together. We will learn to configure CORS on our backend API, and how to use it with our Angular client-side application. We will also learn to deal with the Angular pipe, templatedriven forms, model-driven forms, and form validations.

⦁ Chapter 11, Building and Deploying Angular Tests, covers how to install, customize, and extend the Bootstrap CSS framework, as well as how to use NgBootstrap components and how to connect Angular services with components and UI interfaces. We will learn to write Angular unit tests, configure application linters (for SCSS and Tslint) to maintain code consistency, create NPM scripts, and also create a Docker image and deploy the application.

작가 소개

⦁ Fernando Monteiro
Fernando Monteiro is a full-stack engineer, speaker, and open source contributor. He has built and made some of his personal projects open source such as Responsive Boilerplate, Frontend Boilerplate, Angm-Generator, and TrelloMetrics.

With around 16 years of experience in information technology, his current focus is on web and mobile enterprise JavaScript applications.

He has worked as graphic designer for various companies and products, including mobile applications.

리뷰

0.0

구매자 별점
0명 평가

이 작품을 평가해 주세요!

건전한 리뷰 정착 및 양질의 리뷰를 위해 아래 해당하는 리뷰는 비공개 조치될 수 있음을 안내드립니다.
  1. 타인에게 불쾌감을 주는 욕설
  2. 비속어나 타인을 비방하는 내용
  3. 특정 종교, 민족, 계층을 비방하는 내용
  4. 해당 작품의 줄거리나 리디 서비스 이용과 관련이 없는 내용
  5. 의미를 알 수 없는 내용
  6. 광고 및 반복적인 글을 게시하여 서비스 품질을 떨어트리는 내용
  7. 저작권상 문제의 소지가 있는 내용
  8. 다른 리뷰에 대한 반박이나 논쟁을 유발하는 내용
* 결말을 예상할 수 있는 리뷰는 자제하여 주시기 바랍니다.
이 외에도 건전한 리뷰 문화 형성을 위한 운영 목적과 취지에 맞지 않는 내용은 담당자에 의해 리뷰가 비공개 처리가 될 수 있습니다.
아직 등록된 리뷰가 없습니다.
첫 번째 리뷰를 남겨주세요!
'구매자' 표시는 유료 작품 결제 후 다운로드하거나 리디셀렉트 작품을 다운로드 한 경우에만 표시됩니다.
무료 작품 (프로모션 등으로 무료로 전환된 작품 포함)
'구매자'로 표시되지 않습니다.
시리즈 내 무료 작품
'구매자'로 표시되지 않습니다. 하지만 같은 시리즈의 유료 작품을 결제한 뒤 리뷰를 수정하거나 재등록하면 '구매자'로 표시됩니다.
영구 삭제
작품을 영구 삭제해도 '구매자' 표시는 남아있습니다.
결제 취소
'구매자' 표시가 자동으로 사라집니다.

개발/프로그래밍 베스트더보기

  • AI 에이전트 인 액션 (마이클 래넘, 류광)
  • 객체지향 시스템 디자인 원칙 (마우리시오 아니체, 오현석)
  • 코드 너머, 회사보다 오래 남을 개발자 (김상기, 배문교)
  • 테디노트의 랭체인을 활용한 RAG 비법노트_기본편 (이경록(테디노트))
  • 생성형 AI를 위한 프롬프트 엔지니어링 (제임스 피닉스, 마이크 테일러)
  • 주니어 백엔드 개발자가 반드시 알아야 할 실무 지식 (최범균)
  • 개정2판 | 시작하세요! 도커/쿠버네티스 (용찬호)
  • 개정2판 | 파인만의 컴퓨터 강의 (리처드 파인만, 서환수)
  • 시스템 설계 면접 완벽 가이드 (지용 탄, 나정호)
  • 모던 소프트웨어 엔지니어링 (데이비드 팔리, 박재호)
  • 멀티패러다임 프로그래밍 (유인동)
  • 개정판 | 밑바닥부터 시작하는 딥러닝 1 (사이토 고키, 이복연)
  • 최고의 프롬프트 엔지니어링 강의 (김진중)
  • 소문난 명강의: 소플의 처음 만난 Next.js (이인제)
  • 따라 하며 배우는 유니티 게임 개발 (아라카와 다쿠야, 아사노 유이치)
  • 핸즈온 생성형 AI (오마르 산세비에로, 페드로 쿠엥카)
  • LLM 인 프로덕션 (크리스토퍼 브루소, 매슈 샤프)
  • 랭체인과 랭그래프로 구현하는 RAG・AI 에이전트 실전 입문 (니시미 마사히로, 요시다 신고)
  • 이것이 스프링 부트다 with 자바 (김희선)
  • 핸즈온 LLM (제이 알아마르, 마르턴 흐루턴도르스트)

본문 끝 최상단으로 돌아가기

spinner
앱으로 연결해서 다운로드하시겠습니까?
닫기 버튼
대여한 작품은 다운로드 시점부터 대여가 시작됩니다.
앱으로 연결해서 보시겠습니까?
닫기 버튼
앱이 설치되어 있지 않으면 앱 다운로드로 자동 연결됩니다.
모바일 버전