
Security News
OpenClaw Skill Marketplace Emerges as Active Malware Vector
Security researchers report widespread abuse of OpenClaw skills to deliver info-stealing malware, exposing a new supply chain risk as agent ecosystems scale.
This store supported ts and provide 100% typed store-manager. Easy start with react, vue2/3, angular, svelte and other.
npm: npm install storax
yarn: yarn add storax
Simple store example: without actions, watchers, tasks
// @src/storage/demo/DemoStorage.ts
import StoreInstance, { StoreModule } from "storax"
type DemoStore = { name: string }
const store = { name: "demoName" }
class DemoSetters extends StoreModule<DemoStore> {
set setName(name: string) {
this.store.name = name
}
}
class DemoGetters extends StoreModule<DemoStore> {
get getName(): string {
return this.store.name
}
}
export const getters = new DemoGetters({ store })
export const setters = new DemoSetters({ store })
const DemoStorage = new StoreInstance<DemoStore, DemoGetters, DemoSetters> ({
name: "demo",
getters,
setters
})
export default DemoStorage
//@src/app.ts
import DemoStorage from '@src/storage/demo/DemoStorage.ts'
const setDemoName = (name: string): void => {
DemoStorage.setters.setName = name
}
setDemoName("test name")
console.log(DemoStorage.getters.getName)
//@src/app.ts
import { getters, setters } from '@src/storage/demo/DemoStorage.ts'
const setDemoName = (name: string): void => {
getters.setName = name
}
setDemoName("test name")
console.log(getters.getName)
FAQs
Universal store on typescript
The npm package storax receives a total of 1 weekly downloads. As such, storax popularity was classified as not popular.
We found that storax 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
Security researchers report widespread abuse of OpenClaw skills to deliver info-stealing malware, exposing a new supply chain risk as agent ecosystems scale.

Security News
Claude Opus 4.6 has uncovered more than 500 open source vulnerabilities, raising new considerations for disclosure, triage, and patching at scale.

Research
/Security News
Malicious dYdX client packages were published to npm and PyPI after a maintainer compromise, enabling wallet credential theft and remote code execution.