
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
angular-async-cache
Advanced tools
A simple utility to help with caching of promises and observables to enable an easy offline first approach in angular 2.0+ apps
A simple utility to help with caching of promises and observables to enable an easy offline first approach in angular 2.0+ apps
Install through npm:
npm install --save angular-async-cache
Sample usage
import { NgModule, Component, Injectable } from '@angular/core';
import { Http } from '@angular/http';
import { AsyncCache, LocalStorageDriver, MemoryDriver, AsyncCacheModule } from 'angular-async-cache';
// declare in your module
@NgModule({
imports: [
AsyncCacheModule.forRoot({
driver: new LocalStorageDriver(), // default cache driver to use. Default in memory. You can also roll your own by implementing the CacheDriver interface
fromCacheAndReplay: true // this is the special sauce - first emit the data from localstorage, then re-fetch the live data from the API and emit a second time. The async pipe will then re-render and update the UI
})
]
})
class MyModule {}
// use in your service
@Injectable()
class CarService {
constructor(
private http: Http,
private asyncCache: AsyncCache,
private memoryDriver: MemoryDriver
) {}
getCars(): Observable<Car[]> {
const cars$: Observable<Car[]> = this.http.get('/cars').map(res => res.json());
return asyncCache.wrap(cars$, '/cars', {
driver: this.memoryDriver, // override the default and cache the data in memory
});
}
}
// finally use with the async pipe in your components template
@Component({
template: `
<div *ngFor="let car of cars | async">
{{ car.model }}
</div>
`
})
class MyComponent {
cars: Observable<Car[]>;
constructor(carService: CarService) {
this.cars = carService.getCars();
}
}
// alternatively use the asyncCache pipe in your template, this way you also dont need to wrap the observable beforehand
@Component({
template: `
<div *ngFor="let car of cars | asyncCache:'/cars' | async">
{{ car.model }}
</div>
`
})
class MyComponent {
cars: Observable<Car[]>;
constructor(http: Http) {
this.cars = http.get('/cars').map(res => res.json());
}
}
npm install
while current directory is this repoRun npm start
to start a development server on port 8000 with auto reload + tests.
Run npm test
to run tests once or npm run test:watch
to continually run tests.
npm run release
MIT
FAQs
A simple utility to help with caching of promises and observables to enable an easy offline first approach in angular 6+ apps
The npm package angular-async-cache receives a total of 35 weekly downloads. As such, angular-async-cache popularity was classified as not popular.
We found that angular-async-cache demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.