Security News
Supply Chain Attack Detected in Solana's web3.js Library
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
@jfkz/ngx-toolkit-cache
Advanced tools
Angular Cache implementation for Browser & Server platforms.
Install the npm package.
# To get the latest stable version and update package.json file:
npm install @ngx-toolkit/cache --save
# or
yarn add @ngx-toolkit/cache
Registered CacheModule
in the root Module of your application with forRoot(caches: Cache[])
static method.
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { CacheModule, MemoryCache } from '@ngx-toolkit/cache';
import { AppComponent } from './app.component';
@NgModule({
imports: [ BrowserModule, CacheModule.forRoot([
new MemoryCache('myMemoryCache')
]) ],
declarations: [ AppComponent ],
bootstrap: [ AppComponent ]
})
export class AppModule { }
/**
* Allows the configuration of defaults for `CacheResult`, `CachePut`, `CacheRemove`, and `CacheRemoveAll` at the class level.
* Without the method level annotations this annotation has no effect.
* @param cacheName
*/
@CacheDefaults(cacheName: string)
/**
* When a method annotated with `CacheResult` is invoked a cache key will be generated
* and *Cache.get(key)* is called before the annotated method actually executes.
* If a value is found in the cache it is returned and the annotated method is never actually executed.
* If no value is found the annotated method is invoked and the returned value is stored in the cache with the generated key.
*
* @param params (Optional) {cacheName?: string}
*/
@CacheResult(params?: { cacheName?: string })
/**
* When a method annotated with `CachePut` is invoked a cache key will be generated
* and *Cache.put(key, value)* will be invoked on the specified cache storing the value marked with `CacheValue`.
*
* @param params (Optional) {cacheName?: string, afterInvocation: boolean = true}
*/
@CachePut(params?: {cacheName?: string, afterInvocation: boolean = true})
/**
* Marks a method argument as part of the cache key.
* If no arguments are marked all arguments are used.
* The exception is for a method annotated with `CachePut` where the `CacheValue` parameter is never included in the key.
*/
@CacheKey()
/**
* Marks the parameter to be cached for a method annotated with `CachePut`.
*/
@CacheValue()
/**
* When a method annotated with `CacheRemove` is invoked a cache key will be generated
* and *Cache.remove(key)* will be invoked on the specified cache.
* The default behavior is to call *Cache.evict(key)* after the annotated method is invoked,
* this behavior can be changed by setting *`afterInvocation`* to false in which case *Cache.evict(key)*
* will be called before the annotated method is invoked.
*
* @param params (Optional) {cacheName?: string, afterInvocation: boolean = true}
*/
@CacheRemove(params?: {cacheName?: string, afterInvocation: boolean = true})
/**
* When a method annotated with `CacheRemoveAll` is invoked all elements in the specified cache will be removed via the *Cache.clear()* method.
* The default behavior is to call *Cache.clear()* after the annotated method is invoked,
* this behavior can be changed by setting *`afterInvocation`* to false in which case *Cache.clear()* will be called before the annotated method is invoked.
*
* @param params (Optional) {cacheName?: string, afterInvocation: boolean = true}
*/
@CacheRemoveAll(params?: {cacheName?: string, afterInvocation: boolean = true})
Example:
@CacheDefaults('myCacheBean')
class CacheBean {
@CachePut()
myMethod(@CacheKey() id: number, @CacheValue() value: any): void {
...
}
@CacheResult()
get(id: number): any {
...
}
@CacheRemove()
refresh(id: number): void {
...
}
@CacheRemoveAll()
refreshAll(): void {
...
}
}
Cache in memory
import { MemoryCache } from '@ngx-toolkit/cache';
new MemoryCache('myCacheName');
Cache in a storage
import { StorageCache } from '@ngx-toolkit/cache';
new StorageCache('myCacheName', window.sessionStorage || window.localStorage);
No cache, do nothing...
import { NoOpCache } from '@ngx-toolkit/cache';
new NoOpCache('myCacheName');
You can create your own implementation. You simply need to implement the Cache
interface:
export interface Cache {
/**
* Return the cache name.
*/
readonly name: string;
/**
* Return the value to which this cache maps the specified key
*/
get<T>(key: string): T;
/**
* Associate the specified value with the specified key in this cache.
* If the cache previously contained a mapping for this key, the old
* value is replaced by the specified value.
*/
put<T>(key: string, value: T): void;
/**
* Evict the mapping for this key from this cache if it is present.
*/
evict(key: string): void;
/**
* Remove all mappings from the cache.
*/
clear(): void;
}
© 2018 Dewizz
FAQs
Angular cache with Universal support
We found that @jfkz/ngx-toolkit-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
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.