New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

storeon-inferno

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

storeon-inferno

A tiny (377 bytes) connector for Storeon and Inferno

  • 1.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1
decreased by-75%
Maintainers
1
Weekly downloads
 
Created
Source

Storeon Inferno

npm version Build Status

Storeon logo by Anton Lovchikov

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.

  • Size. 377 bytes (+ Storeon itself) instead of ~10kB of inferno-redux (minified and gzipped).
  • Ecosystem. Many additional tools can be combined with a store.
  • Speed. It tracks what parts of state were changed and re-renders only components based on the changes.

Install

npm install -S storeon-inferno

or

yarn add storeon-inferno

How to use

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)

Keywords

FAQs

Package last updated on 21 Jun 2020

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc