Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

mobx-react-autorun

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mobx-react-autorun

A small react HOC to run a mobx autorun function when a component mounts, and dispose of it when the component will unmount.

  • 1.0.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

mobx-react-autorun

A small react HOC to run a mobx autorun function when a component mounts, and dispose of it when the component will unmount.

import React from "react"
import { observer } from "mobx-react"
import autorunner from "mobx-react-autorun"

@autorunner @observer
export default class MyComponent extends React.Component {

  autorunner = () => {
    // this function will run like any normal mobx autorun function,
    // so it will automatically react to changes in your
    // observables. Just remember to make the component an observer!
  }

  render() {
    return (
      <div>
        Hello world
      </div>
    )
  }

}

FAQs

Package last updated on 31 Aug 2017

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