Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/andrewjbateman/angular-fast-http-caching
:clipboard: Get data from a Github API and use observables for fast http caching. Tutorial from 'Demos with Angular'
https://github.com/andrewjbateman/angular-fast-http-caching
angular angular15 cache-storage html5 httpclient observable rxjs rxjs7 tutorial tutorial-code typescript
Last synced: 14 days ago
JSON representation
:clipboard: Get data from a Github API and use observables for fast http caching. Tutorial from 'Demos with Angular'
- Host: GitHub
- URL: https://github.com/andrewjbateman/angular-fast-http-caching
- Owner: AndrewJBateman
- Created: 2018-12-17T13:46:28.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-02-04T06:52:06.000Z (almost 2 years ago)
- Last Synced: 2024-11-07T03:32:10.994Z (2 months ago)
- Topics: angular, angular15, cache-storage, html5, httpclient, observable, rxjs, rxjs7, tutorial, tutorial-code, typescript
- Language: TypeScript
- Homepage:
- Size: 1.31 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# :zap: Angular Fast Http Caching
* Uses HTTP Angular (asynchronous) Observables with RxJS (JS version of Reactive library) and browser local storage to show a locally cached version of API data.
* Replaced by real data once the network request has completed.
* **Note:** to open web links in a new window use: _ctrl+click on link_![GitHub repo size](https://img.shields.io/github/repo-size/AndrewJBateman/angular-fast-http-caching?style=plastic)
![GitHub pull requests](https://img.shields.io/github/issues-pr/AndrewJBateman/angular-fast-http-caching?style=plastic)
![GitHub Repo stars](https://img.shields.io/github/stars/AndrewJBateman/angular-fast-http-caching?style=plastic)
![GitHub last commit](https://img.shields.io/github/last-commit/AndrewJBateman/angular-fast-http-caching?style=plastic)## :page_facing_up: Table of contents
* [:zap: Angular Fast Http Caching](#zap-angular-fast-http-caching)
* [:page_facing_up: Table of contents](#page_facing_up-table-of-contents)
* [:books: General info](#books-general-info)
* [:camera: Screenshots](#camera-screenshots)
* [:signal_strength: Technologies](#signal_strength-technologies)
* [:floppy_disk: Setup](#floppy_disk-setup)
* [:computer: Code Examples](#computer-code-examples)
* [:cool: Features](#cool-features)
* [:clipboard: Status & To-Do List](#clipboard-status--to-do-list)
* [:clap: Inspiration](#clap-inspiration)
* [:file_folder: License](#file_folder-license)
* [:envelope: Contact](#envelope-contact)## :books: General info
* "Observables are a new way of pushing data in JavaScript. An observable is a Producer of multiple values, “pushing” them to subscribers."
* Shows github repos using a search term 'angular'.## :camera: Screenshots
![Example screenshot](./img/fast-http-caching.png).
## :signal_strength: Technologies
* [Angular v15](https://angular.io/)
* [RxJS Library v7](https://angular.io/guide/rx-library) used to handle datastreams and propagation of change using observables.
* [RxJS startWith operator](http://reactivex.io/documentation/operators/startwith.html) used to emit a specified sequence of values before beginning to emit the items from the source Observable.
* [The HttpClient in @angular/common/http](https://angular.io/guide/http) offers a simplified client HTTP API for Angular applications that rests on the XMLHttpRequest interface exposed by browsers.## :floppy_disk: Setup
* `npm i` to install dependencies
* Run `ng serve` for a dev server.
* Navigate to `http://localhost:4200/`. The app will automatically reload if you change any of the source files.## :computer: Code Examples
* `app.component.ts` _subscribe to github repo and use http caching_
```typescript
export class AppComponent implements OnInit {
title = "angular-fast-http-caching";
repos: any;constructor(private http: HttpClient) {}
ngOnInit() {
this.getRepos();
}getRepos() {
const path = "https://api.github.com/search/repositories?q=angular";
this.repos = this.http.get(path).pipe(map((data: any) => data.items));this.repos.subscribe((next: any) => {
console.log("next data: ", next, typeof next); // type=object
localStorage[CACHE_KEY] = JSON.stringify(next); // store in local storage
});this.repos = this.repos.pipe(
startWith(JSON.parse(localStorage[CACHE_KEY] || "[]"))
);
}
}
```## :cool: Features
* An Angular HTTP Observable is combined with RxJS and the browser's local storage to automatically serve up a locally cached version that gets replaced by the real data as soon as the network request is finished.
## :clipboard: Status & To-Do List
* Status: Working.
* To-Do: nothing.## :clap: Inspiration
* [Youtube tutorial by 'Digital Fluency', Fast HTTP Caching With Angular HTTP Observables](https://www.youtube.com/watch?v=Yf1FfhMetjs&t=535s).
* [Luuk Gruijs, Medium article, "Understanding, creating and subscribing to observables in Angular"](https://medium.com/@luukgruijs/understanding-creating-and-subscribing-to-observables-in-angular-426dbf0b04a3)## :file_folder: License
* This project is licensed under the terms of the MIT license.
## :envelope: Contact
* Repo created by [ABateman](https://github.com/AndrewJBateman), email: [email protected]