Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
@nion/nion
Advanced tools
nion is a library that makes it easy to fetch, update, and manage API data in a Redux store as well as bind it to React components. Nion strives to make working with data as **flexible**, **consistent**, and **predictable** as possible. 💖
nion is a library that makes it easy to fetch, update, and manage API data in a Redux store as well as bind it to React components. Nion strives to make working with data as flexible, consistent, and predictable as possible. 💖
nion is heavily inspired by Apollo and GraphQL.
nion is used as a hook which is given a declaration of what data is needed by the component that calls it.
import { useNion } from '@nion/nion'
export const UserContainer = () => {
const [currentUser, actions, request] = useNion({
dataKey: 'currentUser',
endpoint: 'https://patreon.com/api/current_user',
})
const loadButton = <Button onClick={() => actions.get()}>Load</Button>
return (
<Card>
{request.isLoading ? <LoadingSpinner /> : loadButton}
{currentUser && <UserCard user={currentUser} />}
</Card>
)
}
We simply pass in a declaration
object that tells nion what to fetch, and nion automatically handles fetching the data and returning it along with the corresponding request status.
nion can also be used as a decorator function which declares what data will be managed by the decorated component and passes in props for managing that data. This is a deprecated usage; we don't recommend writing new code that uses the decorator form.
See also:
nion requires redux-thunk
in order to handle its async actions, so you should install that along with the nion
package.
npm install nion redux-thunk --save
Since nion can be used as a decorator function, you might want to make sure you've got babel configured to handle decorator transpilation:
npm install babel-plugin-transform-decorators-legacy --save-dev
Finally, nion has to be wired up to the redux store and optionally configured. Here's a very simple setup:
import { applyMiddleware, createStore, combineReducers } from 'redux'
import thunkMiddleware from 'redux-thunk'
import { configureNion } from 'nion'
export default function configureStore() {
const configurationOptions = {}
const { reducer: nionReducer } = configureNion(configurationOptions)
const reducers = combineReducers({
nion: nionReducer,
})
let store = createStore(reducers, applyMiddleware(thunkMiddleware))
return store
}
Read more about configuring nion in the docs.
FAQs
nion is a library that makes it easy to fetch, update, and manage API data in a Redux store as well as bind it to React components. Nion strives to make working with data as **flexible**, **consistent**, and **predictable** as possible. 💖
We found that @nion/nion demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 7 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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.