Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
@nwx/http-cache
Advanced tools
A simple http cache module for Angular applications
npm i @nwx/http-cache |OR| yarn add @nwx/http-cache
// In your environment{prod,staging}.ts
import { AppCfg, TargetPlatform } from '@nwx/cfg';
import { LogLevels } from '@nwx/logger';
export const environment: AppCfg = {
// app name
appName: '@nwx/http-cache',
// target (browser, mobile, desktop)
target: TargetPlatform.web,
// production, staging or development
production: false,
log: {
// log level (application-wide)
level: LogLevels.debug
},
http-cache: {
// estimate expiry time of http cache (in seconds)
ttl: 60,
}
};
// In your app.module.ts
import { CfgModule } from '@nwx/cfg';
import { LoggerModule } from '@nwx/logger';
import { http-cacheModule } from '@nwx/http-cache';
import { environment } from '../environments/environment';
@NgModule({
declarations: [AppComponent],
imports: [
BrowserModule,
CfgModule.forRoot(environment), // make the environment injectable
LoggerModule,
HttpCacheModule
],
bootstrap: [AppComponent]
})
export class AppModule {}
// In your app.component.ts
import { Component, OnInit, OnDestroy } from '@angular/core';
import { Subject } from 'rxjs';
@Component({
selector: 'app',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css'],
})
export class AppComponent implements OnInit, OnDestroy {
title = 'Neekware';
options = {};
destroy$ = new Subject();
constructor(
private http: HttpClient,
private httpCache: HttpCacheService
) {
this.title = this.cfg.options.appName;
console.log('AppComponent loaded ...');
}
ngOnInit() {
// create a state path into our store - also used as internal cache key
const portfolioStatePath = new OrderedStatePath()
.append('user', 1)
.append('portfolio', 2)
.toString());
// select on the state path to be notified of any change
this.httpCache.store
.select<Portfolio>(portfolioStatePath)
.pipe(takeUntil(this.destroy$))
.subscribe({
next: portfolio => {
console.log('Portfolio via Select', portfolio);
},
});
this.makePortfolioRequest('1', '2'); // calls the api
setTimeout(() => {
this.makePortfolioRequest('1', '2'); // uses the cache response
}, 4)
setTimeout(() => {
this.makePortfolioRequest('1', '2'); // calls the api
}, 6)
}
makePortfolioRequest(uId: string, pId: string) {
const cacheKey = new OrderedStatePath()
.append('user', uId)
.append('portfolio', pId)
.toString();
const httpHeaders = addMetaToHttpHeaders({
policy: HttpCacheFetchPolicy.CacheFirst,
key: cacheKey,
ttl: 5,
});
this.http.get<Portfolio>(`/api/user/${uId}/portfolio/${pId}`, { headers: httpHeaders })
.pipe(takeUntil(this.destroy$))
.subscribe(portfolio => {
console.log('Portfolio via Http', portfolio);
});
}
ngOnDestroy() {
this.destory$.next();
this.destroy$.complete();
}
}
To run the tests against the current environment:
npm run ci:all
Released under a (MIT) license.
X.Y.Z Version
`MAJOR` version -- making incompatible API changes
`MINOR` version -- adding functionality in a backwards-compatible manner
`PATCH` version -- making backwards-compatible bug fixes
FAQs
A simple http cache module for Angular applications
The npm package @nwx/http-cache receives a total of 0 weekly downloads. As such, @nwx/http-cache popularity was classified as not popular.
We found that @nwx/http-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
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.