
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.
Jumpsuit is a React framework for efficiently building powerful web applications.
$ yarn add jumpsuit
# or
$ npm install --save jumpsuit
# Create a new project with create-react-app
$ create-react-app myProjectName
$ cd myProjectName
# Install Jumpsuit
$ yarn add jumpsuit
# Start the create-react-app dev server
$ yarn start
index.js
// Import Jumpsuit
import React from 'react'
import { Render, State, Actions, Component, Effect } from 'jumpsuit'
// Create a state with some actions
const CounterState = State({
// Initial State
initial: { count: 0 },
// Actions
increment: ({ count }) => ({ count: count + 1 }),
decrement: ({ count }) => ({ count: count - 1 })
})
// Create an async action
Effect('incrementAsync', () => {
setTimeout(() => Actions.increment(), 1000)
})
// Create a subscribed component
const Counter = Component({
render() {
return (
<div>
<h1>{ this.props.count }</h1>
<button onClick={ Actions.increment }>Increment</button>
<button onClick={ Actions.decrement }>Decrement</button>
<br />
<button onClick={ Actions.incrementAsync }>Increment Async</button>
</div>
)
}
}, (state) => ({
// Subscribe to the counter state (will be available via this.props.counter)
count: state.counter.count
}))
// Compose the global state
const globalState = { counter: CounterState }
// Render your app!
Render(globalState, <Counter/>, 'app')
src
directory!Using Jumpsuit in your project? Show it off!
[](https://github.com/jumpsuit/jumpsuit)
Tanner Linsley | Jason Maurer |
MIT © Jumpsuit
FAQs
Jump in. Zip up. Build great apps.
We found that jumpsuit demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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
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.