
Security News
MCP Community Begins Work on Official MCP Metaregistry
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
ngx-webstorage
Advanced tools
### Local and session storage - Angular service This library provides an easy to use service to manage the web storages (local and session) from your Angular application. It provides also two decorators to synchronize the component attributes and the web
This library provides an easy to use service to manage the web storages (local and session) from your Angular application. It provides also two decorators to synchronize the component attributes and the web storages.
The forRoot is now mandatory in the root module even if you don't need to configure the library
provideNgxWebstorage(
withNgxWebstorageConfig({ separator: ':', caseSensitive: true }),
withLocalStorage(),
withSessionStorage()
)
Download the library using npm npm install --save ngx-webstorage
Declare the library in your main module
import {NgModule} from '@angular/core';
import {BrowserModule} from '@angular/platform-browser';
import {provideNgxWebstorage, withNgxWebstorageConfig} from 'ngx-webstorage';
@NgModule({
declarations: [...],
imports: [
BrowserModule
],
providers: [
provideNgxWebstorage(),
//provideNgxWebstorage(
// withNgxWebstorageConfig({ prefix: 'custom', separator: '.', caseSensitive:true })
//)
// The config allows to configure the prefix, the separator and the caseSensitive option used by the library
// Default values:
// prefix: "ngx-webstorage"
// separator: "|"
// caseSensitive: false
]
bootstrap: [...]
})
export class AppModule {
}
Inject the services you want in your components and/or use the available decorators
import {Component} from '@angular/core';
import {LocalStorageService, SessionStorageService} from 'ngx-webstorage';
@Component({
selector: 'foo',
template: `foobar`
})
export class FooComponent {
constructor(private localSt:LocalStorageService) {}
ngOnInit() {
this.localSt.observe('key')
.subscribe((value) => console.log('new value', value));
}
}
import {Component} from '@angular/core';
import {LocalStorage, SessionStorage} from 'ngx-webstorage';
@Component({
selector: 'foo',
template: `{{boundValue}}`,
})
export class FooComponent {
@LocalStorage()
public boundValue;
}
Since the new standalone API and angular v15+, provider functions are now the way to go to configure your application (learn more).
From now on to setup your project, you can use the provideNgxWebstorage
function.
You can independently add the (you can of course add them both together):
localStorage
features with withLocalStorage
sessionStorage
features with withLocalStorage
You can add a custom configuration with withNgxWebstorageConfig
bootstrapApplication(AppComponent, {
providers: [
// ...
provideNgxWebstorage(
withNgxWebstorageConfig({ separator: ':', caseSensitive: true }),
withLocalStorage(),
withSessionStorage()
)
]
})
LocalStorageService
string
, value:any
):void
create or update an item in the local storage
import {Component} from '@angular/core';
import {LocalStorageService} from 'ngx-webstorage';
@Component({
selector: 'foo',
template: `
<section><input type="text" [(ngModel)]="attribute"/></section>
<section><button (click)="saveValue()">Save</button></section>
`,
})
export class FooComponent {
attribute;
constructor(private storage:LocalStorageService) {}
saveValue() {
this.storage.store('boundValue', this.attribute);
}
}
string
):any
retrieve a value from the local storage
import {Component} from '@angular/core';
import {LocalStorageService} from 'ngx-webstorage';
@Component({
selector: 'foo',
template: `
<section>{{attribute}}</section>
<section><button (click)="retrieveValue()">Retrieve</button></section>
`,
})
export class FooComponent {
attribute;
constructor(private storage:LocalStorageService) {}
retrieveValue() {
this.attribute = this.storage.retrieve('boundValue');
}
}
string
):void
import {Component} from '@angular/core';
import {LocalStorageService, LocalStorage} from 'ngx-webstorage';
@Component({
selector: 'foo',
template: `
<section>{{boundAttribute}}</section>
<section><button (click)="clearItem()">Clear</button></section>
`,
})
export class FooComponent {
@LocalStorage('boundValue')
boundAttribute;
constructor(private storage:LocalStorageService) {}
clearItem() {
this.storage.clear('boundValue');
//this.storage.clear(); //clear all the managed storage items
}
}
boolean
import {Component, OnInit} from '@angular/core';
import {LocalStorageService, LocalStorage} from 'ngx-webstorage';
@Component({
selector: 'foo',
template: `...`,
})
export class FooComponent implements OnInit {
@LocalStorage('boundValue')
boundAttribute;
constructor(private storage:LocalStorageService) {}
ngOnInit() {
let isAvailable = this.storage.isStorageAvailable();
console.log(isAvailable);
}
}
string
):EventEmitter
import {Component} from '@angular/core';
import {LocalStorageService, LocalStorage} from 'ngx-webstorage';
@Component({
selector: 'foo',
template: `{{boundAttribute}}`,
})
export class FooComponent {
@LocalStorage('boundValue')
boundAttribute;
constructor(private storage:LocalStorageService) {}
ngOnInit() {
this.storage.observe('boundValue')
.subscribe((newValue) => {
console.log(newValue);
})
}
}
SessionStorageService
The api is identical as the LocalStorageService's
@LocalStorage
Synchronize the decorated attribute with a given value in the localStorage
import {Component} from '@angular/core';
import {LocalStorage, SessionStorage} from 'ngx-webstorage';
@Component({
selector: 'foo',
template: `{{boundAttribute}}`,
})
export class FooComponent {
@LocalStorage()
public boundAttribute;
}
@SessionStorage
Synchronize the decorated attribute with a given value in the sessionStorage
import {Component} from '@angular/core';
import {LocalStorage, SessionStorage} from 'ngx-webstorage';
@Component({
selector: 'foo',
template: `{{randomName}}`,
})
export class FooComponent {
@SessionStorage('AnotherBoundAttribute')
public randomName;
}
NgxWebstorage's decorators are based upon accessors so the update trigger only on assignation. Consequence, if you change the value of a bound object's property the new model will not be store properly. The same thing will happen with a push into a bound array. To handle this cases you have to trigger manually the accessor.
import {LocalStorage} from 'ngx-webstorage';
class FooBar {
@LocalStorage('prop')
myArray;
updateValue() {
this.myArray.push('foobar');
this.myArray = this.myArray; //does the trick
}
}
npm install
Start the unit tests: npm run test
Start the unit tests: npm run test:watch
Start the dev server: npm run dev
then go to http://localhost:8080/webpack-dev-server/index.html
FAQs
### Local and session storage - Angular service This library provides an easy to use service to manage the web storages (local and session) from your Angular application. It provides also two decorators to synchronize the component attributes and the web
The npm package ngx-webstorage receives a total of 60,888 weekly downloads. As such, ngx-webstorage popularity was classified as popular.
We found that ngx-webstorage demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
Research
Security News
Socket uncovers an npm Trojan stealing crypto wallets and BullX credentials via obfuscated code and Telegram exfiltration.
Research
Security News
Malicious npm packages posing as developer tools target macOS Cursor IDE users, stealing credentials and modifying files to gain persistent backdoor access.