Security News
JSR Working Group Kicks Off with Ambitious Roadmap and Plans for Open Governance
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
@rpldy/simple-state
Advanced tools
deep proxy object, so it's only updateable through an update method
Internal package
Deep proxies an object so it is only updateable through an update callback. outside an updater, it is impossible to make changes
It only proxies simple objects (not maps or sets) and arrays
It doesnt create new references and doesnt copy over anything
Original object is changed!
The best place to get started is at our: React-Uploady Documentation Website
#Yarn:
$ yarn add @rpldy/simple-state
#NPM:
$ npm i @rpldy/simple-state
All exports of this package are considered internal API and may change/disappear in any version: patch/minor/major
import createState from "@rpldy/simple-state"
const { state, update } = createState({
arr: [1,2,3]
});
state.arr.push(4);
console.log(state.arr); // print [1,2,3]
update((state) => {
state.arr.push(4);
});
console.log(state.arr); // print [1,2,3,4]
1.8.3 (2024-08-19)
[chunked-uploady]
- fix: typings for chunk events hooks, to accept promise return type. Fix for #726ci
- parallelize e2e test runs and create weights file based on timings for optimized future runsFAQs
deep proxy object, so it's only updateable through an update method
The npm package @rpldy/simple-state receives a total of 10,129 weekly downloads. As such, @rpldy/simple-state popularity was classified as popular.
We found that @rpldy/simple-state 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
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
Security News
Research
An advanced npm supply chain attack is leveraging Ethereum smart contracts for decentralized, persistent malware control, evading traditional defenses.
Security News
Research
Attackers are impersonating Sindre Sorhus on npm with a fake 'chalk-node' package containing a malicious backdoor to compromise developers' projects.