
Security News
GitHub Actions Pricing Whiplash: Self-Hosted Actions Billing Change Postponed
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.
@parity/mobx
Advanced tools
Create one MobX store per JSON-RPC method.
@parity/mobx creates one MobX store per RPC method, with an observable value updating whenever the underlying pubsub RPC fires.
For example, let's take syncing state. Instead of making a pubsub directly to api.pubsub.eth.syncing((error, result) => ...) to detect whether we're currently syncing or not, we just spawn a MobX store, and observe the changes.
import stores from '@parity/mobx'
@observer
class MyComponent extends React.Component {
this.syncingStore = stores.eth.syncing().get(api); // Pass the api object to the store
render() {
const { syncing } = this.syncingStore
return <div>The syncing state is: {JSON.stringify(syncing)}</div>
}
}
And the syncing state will be re-rendered automatically on each new pubsub publication.
_ in the RPC method. For example, the MobX store for eth_syncing has an observable variable named syncing, the MobX store for parity_enode has an observable variable named enode, etc.@computed properties, e.g. stores.parity.dappsUrl()... More doc coming soon..get() method: store.eth.syncing().get().FAQs
Parity MobX Stores
The npm package @parity/mobx receives a total of 7 weekly downloads. As such, @parity/mobx popularity was classified as not popular.
We found that @parity/mobx demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 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
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.