Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
simpler-state
Advanced tools
SimpleR State is an ultra-lightweight library that provides the simplest state management for React.
Get all these benefits with one dependency install:
npm install simpler-state
Step 1: Create an entity (shared state) and actions (updater functions)
// counter.js
import { entity } from 'simpler-state'
export const counter = entity(0)
export const reset = () => {
counter.set(0)
}
export const increment = by => {
counter.set(value => value + by)
// Alternatively: counter.set(counter.get() + by)
}
Step 2: Use the entity in your components with hooks
import { counter, increment, reset } from 'counter'
const CounterView = () => {
const count = counter.use()
return (
<>
<div>{count}</div>
<button onClick={() => increment(1)}> + </button>
<button onClick={reset}> Reset </button>
</>
)
}
It's that simple! But the library can do a lot more, so check out the docs website.
Learn more about what you can do with SimpleR State at simpler-state.js.org.
I have opened a Request For Comments (here) on GitHub. Your comments and suggestions would be greatly appreciated.
And if you like this library, the concept, and its simplicity, please give it a star on the GitHub repo to let me know. 😀
This library is an evolution of the already production-proven react-entities that I also wrote. It shares the same stable core, but with a very different API.
FAQs
The simplest app state management for React
The npm package simpler-state receives a total of 8,490 weekly downloads. As such, simpler-state popularity was classified as popular.
We found that simpler-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
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.