
Security News
Crates.io Implements Trusted Publishing Support
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
recoil-sync
Advanced tools
recoil-sync provides an add-on library to help synchronize Recoil state with external systems
The recoil-sync
package provides an add-on library to help synchronize Recoil state with external systems.
Please see the Recoil Sync Documentation
In Recoil, simple asynchronous data queries can be implemented via selectors or useEffect()
and atom effects can be used for bi-directional syncing of individual atoms. The recoil-sync
add-on package provides some additional functionality:
recoil-sync
and refine
help provide this functionality.The recoil-sync
library also provides built-in implementations for external stores, such as syncing with the browser URL.
The basic idea is that a syncEffect()
can be added to each atom that you wish to sync, and then a <RecoilSync/>
is added inside your <RecoilRoot>
to specify how to sync those atoms. You can use built-in stores such as <RecoilURLSyncJSON>
, make your own, or sync different groups of atoms with different stores.
Here is a simple example syncing an atom with the browser URL:
const currentUserState = atom<number>({
key: 'CurrentUser',
default: 0,
effects: [
syncEffect({ refine: number() }),
],
});
Then, at the root of your application, simply include <RecoilURLSyncJSON />
to sync all of those tagged atoms with the URL
function MyApp() {
return (
<RecoilRoot>
<RecoilURLSyncJSON location={{part: 'queryParams'}}>
...
</RecoilURLSyncJSON>
</RecoilRoot>
)
}
That's it! Now this atom will initialize its state based on the URL during initial load, any state mutations will update the URL, and changes in the URL (such as the back button) will update the atom. See more examples in the Sync Effect, Store Implementation, and URL Persistence guides.
Please see the Recoil installation guide and add recoil-sync
as an additional dependency. recoil-sync
also includes the refine
library.
Development of Recoil happens in the open on GitHub, and we are grateful to the community for contributing bugfixes and improvements. Read below to learn how you can take part in improving Recoil.
Recoil is MIT licensed.
FAQs
recoil-sync provides an add-on library to help synchronize Recoil state with external systems
The npm package recoil-sync receives a total of 19,154 weekly downloads. As such, recoil-sync popularity was classified as popular.
We found that recoil-sync demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 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
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
Research
/Security News
Undocumented protestware found in 28 npm packages disrupts UI for Russian-language users visiting Russian and Belarusian domains.
Research
/Security News
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.