![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@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
0.0.5
Features:
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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.