Security News
The Risks of Misguided Research in Supply Chain Security
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
ng2-webstorage
Advanced tools
This library provides an easy to use service to manage the web storages (local and session) from your ng2 application. It provides also two decorators to synchronize the component attributes and the web storages.
Download the library using npm npm install --save ng2-webstorage
Register the library in your ng2 application (bootstrap or any component your want)
import {NG2_WEBSTORAGE} from 'ng2-webstorage';
import {bootstrap} from '@angular/platform-browser-dynamic';
bootstrap(App, [ NG2_WEBSTORAGE ]);
import {Component} from '@angular/core';
import {NG2_WEBSTORAGE} from 'ng2-webstorage';
@Component({
selector: 'foo',
template: `foobar`,
providers: [NG2_WEBSTORAGE]
})
export class FooComponent {}
Inject the services you want in your components and/or use the available decorators
import {Component} from '@angular/core';
import {LocalStorageService, SessionStorageService} from 'ng2-webstorage';
@Component({
selector: 'foo',
template: `foobar`,
providers: [NG2_WEBSTORAGE]//can be [LocalStorageService]
})
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 'ng2-webstorage';
@Component({
selector: 'foo',
template: `{{boundValue}}`,
})
export class FooComponent {
@LocalStorage()
public boundValue;
}
string
, value:any
):void
create or update an item in the local storage
import {Component} from '@angular/core';
import {LocalStorageService} from 'ng2-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 'ng2-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 'ng2-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
}
}
string
):EventEmitter
import {Component} from '@angular/core';
import {LocalStorageService, localStorage} from 'ng2-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);
})
}
}
The api is identical as the LocalStorageService's
Synchronize the decorated attribute with a given value in the localStorage
import {Component} from '@angular/core';
import {LocalStorage, SessionStorage} from 'ng2-webstorage';
@Component({
selector: 'foo',
template: `{{boundAttribute}}`,
})
export class FooComponent {
@LocalStorage()
public boundAttribute;
}
Synchronize the decorated attribute with a given value in the sessionStorage
import {Component} from '@angular/core';
import {LocalStorage, SessionStorage} from 'ng2-webstorage';
@Component({
selector: 'foo',
template: `{{randomName}}`,
})
export class FooComponent {
@SessionStorage('AnotherBoundAttribute')
public randomName;
}
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
Angular webstorage manager
The npm package ng2-webstorage receives a total of 532 weekly downloads. As such, ng2-webstorage popularity was classified as not popular.
We found that ng2-webstorage 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
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
Research
Security News
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.