
Security News
The Changelog Podcast: Practical Steps to Stay Safe on npm
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.
@tethys/store
Advanced tools
[](https://github.com/tethys-org/store/actions/workflows/main.yml) [![Coverage Status][coveralls-image]][coveralls-url] 
export class CounterStore extends Store<CounterState> {
static countSelector(state: CounterState) {
return state.count;
}
constructor() {
super({ count: 0 });
}
@Action()
increase() {
return of(true).pipe(
tap(() => {
this.update({ count: this.snapshot.count + 1 });
})
);
}
@Action()
decrease() {
return of(true).pipe(
tap(() => {
this.update((state) => {
return {
count: state.count - 1
};
});
})
);
}
}
@Component({
selector: 'thy-store-counter-example',
template: `<div>Count: {{ count$ | async }}</div>
<button class="dg-btn dg-btn-primary dg-btn-sm" (click)="increase()">+</button>
<button class="dg-btn dg-btn-primary dg-btn-sm" (click)="decrease()">-</button>
`,
styleUrls: ['./counter.component.scss']
})
export class ThyStoreCounterExampleComponent implements OnInit {
count$: Observable<number> = this.counterStore.select$(CounterStore.countSelector);
constructor(public counterStore: CounterStore) {}
ngOnInit(): void {}
increase() {
this.counterStore.increase();
}
decrease() {
this.counterStore.decrease();
}
}
$ git clone https://github.com/worktile/store
$ cd store && yarn
$ yarn start:docs // open http://localhost:8887
yarn release
yarn pub
FAQs
[](https://github.com/tethys-org/store/actions/workflows/main.yml) [![Coverage Status][coveralls-image]][coveralls-url] 
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
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.

Security News
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.

Security News
Ruby's creator Matz assumes control of RubyGems and Bundler repositories while former maintainers agree to step back and transfer all rights to end the dispute.