
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
react-solid-state
Advanced tools
This is a local state swap for React using SolidJS. Instead of worry about when your components should update you can use declarative data. This makes use of the new React Hooks API. However it differs in a few really key ways:
The goal here is to give as close as possible to Solid's easy state management and fine grained dependency detection while still being able to use React. All of Solid's API methods have been ported. Note: this uses Hooks so it only works with Function Components which is consistent with how Components work in Solid.
There are a few differences in the API from some same named Hooks from React. Solid Stores are objects much like traditional React State. There is a useCleanup method that lets you register release code at both the component unmount level and in each Hook. useEffect doesn't expect a cleanup/dispose method returned for that reason. useMemo (and useSignal) return getters rather than the the pure value. This is because the context under data is accessed is the key to automatic dependency tracking. For all the information of how Solid works look at the website.
To get started simply wrap your components withSolid HOC and have your Component return a Function with your JSX. From there use your hooks.
This package exports both direct Solid API named functions and use prefixed ones. Solid isn't subject to the Hook rules so it makes sense to use the same way, but if you want to use use you can.
import { withSolid, createSignal } from 'react-solid-state'
import React from 'react'
const WelcomeComponent = withSolid(props => {
const [recipient, setRecipient] = createSignal('John');
return () => (<div onClick={() => setRecipient('Jake')}>
Hello { recipient() }
</div>);
})
Alternatively you can use the useObserver Hook instead:
import { useObserver, createSignal, createEffect, onCleanup } from 'react-solid-state'
import React from 'react'
const CounterComponent = props => {
const [count, setCount] = createSignal(0);
createEffect(() => {
const timer = setInterval(() => setCount(c => c + 1), 1000);
onCleanup(() => clearInterval(timer));
})
return useObserver(() => <div>{count()}</div>);
})
FAQs
Auto tracking state management for modern React
We found that react-solid-state 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.