Skip to main content
← All posts

Posts tagged "Angular"

20 posts

Serve an Angular app on localhost via HTTPS

Enabling HTTPS support via the Angular CLI is really straight forward, however generating a trusted certificate can be tricky. This article discusses how to achieve HTTPS on localhost for Angular applications.

What's new in Angular 6?

In this article we are discussing the changes involved with the latest relase of the popular frontend framework by Google, Angular 6.

Caching HTTP requests with Angular

​Often when working with Angular applications, we make HTTP requests to access data from an API. Sometimes we are making requests to the same API endpoint in which case it'd make sense to cache the result of the response to avoid further requests.

Binding HTML with Angular

In this article we are reviewing what it takes to render HTML content inside Angular templates, including a word of caution regarding unsafe content.

File upload with Angular and Restify (Tutorial)

In this tutorial we'll learn how to upload files from an Angular5 application to a Node.js REST API that runs using Restify. For the file upload functionality we'll use the File Web API, without relying on a third party component.