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 βeta

npm version typescript support npm bundle size code coverage

Reactive state manager for React.

Light, Fast, and Pretty looked :kissing_heart:

Usage

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

const Todos = unit({
  todos: [],            // Init immutable store
  async fetch() {
    const { data } = await axios.get("/api/todos");
    this.todos = data;  // Update immutable store
  },
  constructor() {
    this.fetch();
  },
  // get completed() {  // Cached selector
  //   return this.todos.filter(task => task.completed);
  // },
});

const App = () => {
  // Use the own instance of Todos
  const { todos, fetch } = useOwn(Todos);

  if (fetch.pending) {
    return (
      <div>Loading</div>
    )
  }
  return (
    <ul>{todos.map(todo => <li>{todo.text}</li>)}</ul>
  );
};

Documentation

Demos

  • Hello - shared state demonstration.
  • Todos - todomvc implementation.

Installation

npm i -P realar
# or
yarn add realar

And update your babel config:

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

Enjoy!

Keywords

FAQs

Package last updated on 25 Oct 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