Angular
Angular Elements – A Practical Introduction To Web Components With Angular 6
With the release of Angular 6 the new Angular Elements functionality is now fully available. By using Angular Elements you can package Angular components as custom elements, a web standard for defining new HTML elements in a framework-agnostic way. The custom elements standard is currently supported by browsers like Chrome, Opera, and [...]
Angular And Contentful – Content Management For Single-Page Web Apps
In this tutorial you’ll learn how to integrate Contentful with your Angular 5/6 application. Contentful is a content management platform which allows you to structure and manage content in the cloud. This content can then be used across multiple platform, e.g. the same content is consumed by a website and a mobile app. The [...]
Creating Angular Projects With Angular CLI
Creating new Angular projects is easy by using Angular CLI in the following way: $ ng new [name] That’s the default usage of the command and creating a new project folder with [name]. The project which is created in that folder is containing: The default Angular project All dependencies installed in node_modules folder Testing [...]
Course Announcement: GraphQL with Angular & Apollo
The first CodingTheSmartWay.com online course has been launched and is available on Udemy: GraphQL with Angular & Apollo – The Full-stack Guide (use this link to get the course for just $10 right now) This course is for everyone interested in learning how to build a full-stack GraphQL-based web application with Angular. The [...]
Firebase Cloud Storage With Angular
Firebase Cloud Storage is a cloud service that let’s you store and retrieve user generated content (like images, audio, or video files). The service is highly scaleable and part of the Firebase platform, so that you can make use of the Firebase Cloud Service on various platforms. If you like CodingTheSmartWay, then consider [...]
Apollo Client For Angular – Making Use of GraphQL
The Apollo Client project is part of Apollo and lets you bind GraphQL data to your web user interface. Apollo client is available for major JavaScript frameworks like React, Vue.js, Angular. In this tutorial we’ll take a look at Apollo Client for Angular. We’ll set up a new Angular 5 project from scratch and you’ll [...]
Angular 5 Service Worker
Angular 5 has been released and the support for building Progressive Web Applications (PWA) with Service Workers has now been build into the framework. A Progressive Web App is a web application which makes use of latest web technologies to make a web application act and feel like an app. This is achieved by making use of Web App [...]
Angular 5 Forms Update
Angular 5 is here and many changes have been made to further improve the framework. In the following let’s take a look at the update which has been made to the Angular Forms package. You can now control for a form (or single form elements) when the value or the validity is updated. This feature has been available in AngularJS 1.x but [...]
Angular Material – Part 4: Data Table
Material Design Components For Angular Part 4: Data Table This is the fourth part of the Angular Material series on CodingTheSmartWay.com. In this part we’ll be focusing on Data Tables. Of course this part again assumes that you’re familiar with the Angular Material library in general and that you know how to setup an Angular [...]
Building An Angular 5 Project with Bootstrap 4 and Firebase
Part 1: Setting Up The Project In this tutorial I’ll show you how to start your Angular 5 Project from scratch and add Bootstrap 4 and the Firebase library to your application. This is the perfect application skeleton for your web application project. Setting Up The Angular Project First we need to setup an Angular project. This is [...]