Socket
Socket
Sign inDemoInstall

realar

Package Overview
Dependencies
Maintainers
1
Versions
129
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

realar

React state manager


Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

Realar

npm version npm bundle size

Reactive state manager for React.

Usage

import React from "react";
import { unit, useUnit } from "realar";
import axios from "axios";

const TodosUnit = unit({
  todos: [],
  async fetch() {
    const { data } = await axios.get("/api/todos");
    this.todos = data;
  },
  constructor() {
    this.fetch();
  }
});

const App = () => {
  const { todos } = useUnit(TodosUnit);
  return (
    <ul>{todos.map((todo) => <li>{todo.text}</li>)}</ul>
  );
};

Tutorials

Glossary

  • unit
  • useUnit
  • changed
  • useService
  • service
  • Service
  • event
  • call
  • signal
  • Zone
  • mock
  • unmock
  • ready

Installation

npm i -P realar
# or
yarn add realar

Update your babel config:

// .babelrc.js
module.exports = {
  "plugins": [
    "realar/babel"
  ]
}

And to wrap your react-dom render code, to realar ready function:

import React from "react";
import { render } from "react-dom";
import { ready } from "realar";
import { App } from "./app";

ready(() => render(<App />, document.getElementById("root")));

Enjoy!

Keywords

FAQs

Package last updated on 31 Aug 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