Security News
cURL Project and Go Security Teams Reject CVSS as Broken
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
@exodus/atoms
Advanced tools
Abstraction for encapsulating a piece of data behind a simple unified interface: get, set, observe
@exodus/atoms
yarn add @exodus/atoms
An atom is a data source wrapper that exposes a single piece of data through 3 different methods:
This library provides helpers for creating atoms from multiple data sources we use in our apps
get | set | observe | |
---|---|---|---|
Memory | ✅ * | ✅ | ✅ |
Storage | ✅ | 🟡 ** | ✅ |
Remote config | ✅ | ❌ | ✅ |
Local config | ✅ | ✅ | ✅ |
Event emitter | ✅ | ❌ | ✅ |
* If no defaultValue
is provided, a memory atom's get()
method will hang and observers will NOT be called until the first set()
call.
** A storage atom needs a special isSoleWriter
param to allow write access. This is because storage instances can overlap, e.g. a parent namespace can mutate a child namespace, and our storage-spec doesn't currently provide for detecting changes across those instances.
import {
createInMemoryAtom,
createStorageAtomFactory,
createRemoteConfigAtomFactory,
fromEventEmitter,
} from '@exodus/atoms'
// In memory atoms
const availableAssetNamesAtom = createInMemoryAtom({
defaultValue: {},
})
// Storage atoms
const storageAtomFactory = createStorageAtomFactory({ storage })
const acceptedTermsAtom = storageAtomFactory({
key: 'acceptedTerms',
defaultValue: false,
isSoleWriter: true,
})
// Remote config atoms
const createRemoteConfigAtom = createRemoteConfigAtomFactory({ remoteConfig })
const fiatOnrampConfigAtom = createRemoteConfigAtom({
path: `dapps.fiatOnramp`,
defaultValue: {},
})
// Event emitter
const geolocationAtom = fromEventEmitter({
emitter: geolocation,
event: 'geolocation',
get: geolocation.get,
})
Computes an atom from another by applying a selector function to the observed data source. Returned atom is read-only, i.e. set will fail.
Computes an atom from another by serializing it's data after reading it and deserializing it before writing it.
FAQs
Abstraction for encapsulating a piece of data behind a simple unified interface: get, set, observe
The npm package @exodus/atoms receives a total of 5,630 weekly downloads. As such, @exodus/atoms popularity was classified as popular.
We found that @exodus/atoms 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
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.