
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
storeon-inferno
Advanced tools
Inferno is the fast, React-like library for building high-performance user interfaces. storeon-inferno
package helps to connect store with Inferno to provide a better performance and developer experience while remaining so tiny.
npm install -S storeon-inferno
or
yarn add storeon-inferno
Create store using storeon
module:
store.js
import { createStoreon } from 'storeon'
let counter = store => {
store.on('@init', () => ({ count: 0 }))
store.on('inc', ({ count }) => ({ count: count + 1 }))
}
export const store = createStoreon([counter])
main.js
Provide store using StoreonProvider
from storeon-inferno
:
import { render } from 'inferno'
import { StoreonProvider } from 'storeon-inferno'
import { store } from './store'
render(
<StoreonProvider store={store}>
<App />
</StoreonProvider>,
document.body
)
Import connectStoreon
decorator from storeon-inferno
:
Counter.js
import { connectStoreon } from 'storeon-inferno'
const Counter = ({ count, dispatch }) => {
return (
<div>
{count}
<button onClick={() => dispatch('inc')}>inc</button>
</div>
)
}
export default connectStoreon('count', Counter)
1.0.0
FAQs
A tiny (377 bytes) connector for Storeon and Inferno
We found that storeon-inferno 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.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.