Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
The state manager to reduce developers' coding time and increase the lifetime of your codebase.
Realar targeted to all scale applications up to complex enterprise solutions on modular architecture.
Logic free React components. Perfect instruments for moving all component logic outside. Your React component will be pure from any unnecessary code, only view, only JSX, no more.
Lightweight and Fast. Less then 5kB. Aims at the smallest size of the resulting bundle. And only parts are updated in which is really necessary to make changes.
Value and Signal is the big elephants remind Store and Action from Redux. Allows you to perform familiar coding techniques, and also add many modern features.
Modular Architecture. Possibilities for the implementation of three levels of logic availability.
Decorators for clasess lovers. Support OOP as one of the primary syntax. The implementation of transparent functional reactive programming (TFRP) with React (looks similar to Mobx). And the babel plugin for automatic wrap all arrow functions defined in the global scope with JSX inside to observe wrapper.
import React from 'react';
import { value, signal, useValue, useLocal, useShared, shared } from 'realar';
const counterLogic = () => {
const count = value(0)
const inc = count.updater(state => state + 1)
const add = count.updater((state, num) => state + num)
return { count, inc, add }
}
const formLogic = () => {
const { add } = shared(counterLogic)
const addendum = value('0').pre(ev => ev.target.value)
const sum = signal()
.map(() => +addendum.val)
.filter()
.to(add);
return { addendum, sum }
}
const Form = () => {
const { addendum, sum } = useLocal(formLogic)
const addendumState = useValue(addendum)
return (
<p>
<input value={addendumState} onChange={addendum} />
<button onClick={sum}>sum</button>
</p>
)
}
const Counter = () => {
const { count, inc } = useShared(counterLogic)
const countState = useValue(count)
return (
<p>
{countState}
<button onClick={inc}>inc</button>
</p>
)
}
const App = () => (
<>
<Counter />
<Form />
<Counter />
<Form />
</>
)
Transparent functional reactive programming with classes, decorators and babel jsx wrapper
class Ticker {
@prop count = 0
tick = () => ++this.count;
}
const ticker = new Ticker();
setInterval(ticker.tick, 200);
const App = () => (
<p>{ticker.count}</p>
)
Try wrapped version on CodeSandbox
It looks likes very clear and natively, and you can start development knows only two functions.
prop
. Reactive value marker. Each reactive value has an immutable state. If the immutable state will update, all React components that depend on It will refresh.
shared
. One of the primary reasons for using state manager in your application is a shared state accessing, and using shared logic between scattered React components and any place of your code.
import React from 'react';
import { prop, shared } from 'realar';
class Counter {
@prop value = 0;
inc = () => this.value += 1;
dec = () => this.value -= 1;
}
const sharedCounter = () => shared(Counter);
const Count = () => {
const { value } = sharedCounter();
return <p>{value}</p>;
};
const Buttons = () => {
const { inc, dec } = sharedCounter();
return (
<>
<button onClick={inc}>+</button>
<button onClick={dec}>-</button>
</>
);
};
const App = () => (
<>
<Count />
<Buttons />
<Count />
<Buttons />
</>
);
export default App;
For best possibilities use babel jsx wrapper, your code will be so beautiful to look like.
But otherwise necessary to wrap all React function components that use reactive values inside to observe
wrapper. Try wrapped version on CodeSandbox.
The basic level of scopes for React developers is a component level scope (for example useState
, and other standard React hooks has that level).
Every React component instance has its own local state, which is saved every render for the component as long as the component is mounted.
In the Realar ecosystem useLocal
hook used to make components local stateful logic.
class CounterLogic {
@prop value = 0;
inc = () => this.value += 1
}
const Counter = () => {
const { value, inc } = useLocal(CounterLogic);
return (
<p>{value} <button onClick={inc}>+</button></p>
);
}
export const App = () => (
<>
<Counter />
<Counter />
</>
);
This feature can be useful for removing logic from the body of a component to keep that free of unnecessary code, and therefore cleaner.
const Counter = () => {
const { value, inc } = useScoped(CounterLogic);
return (
<p>{value} <button onClick={inc}>+</button></p>
);
}
export const App = () => (
<Scope>
<Scope>
<Counter />
<Counter />
</Scope>
<Counter />
</Scope>
);
The abstraction of the core is an implementation of functional reactive programming on javascript and binding that with React.
It uses usual mathematic to describe dependencies and commutation between reactive values.
In contradistinction to stream pattern, operator functions not needed. The reactive “sum” operator used a simple “+” operator (for example).
const a = value(0)
const b = value(0)
const sum = () => a.val + b.val
on(sum, console.log)
That code has a graph of dependencies inside. “sum” - reactive expression depends from “A” and “B”, and will react if “A” or “B” changed. It is perfectly demonstrated with “on” function (that subscribes to reactive expression) and “console.log” (developer console output).
On each change of “A” or “B” a new value of that sum will appear in the developer console output.
And for tasty easy binding reactive expressions and values with React components.
const App = () => {
const val = useValue(sum);
return (
<p>{val}</p>
);
}
That component will be updated every time when new sum value is coming.
The difference from exists an implementation of functional reactive programming (mobx) in Realar dependency collector provides the possibility to write in selectors and nested writable reactions.
Realar provides big possibility abstractions for reactive flow. We already know about reactive value container, reactive expressions, and subscribe mechanism. But also have synchronization between data, cycled reactions, cached selectors, transactions and etc.
npm install realar
# or
yarn add realar
Enjoy and happy coding!
FAQs
Advanced state manager for React
The npm package realar receives a total of 1 weekly downloads. As such, realar popularity was classified as not popular.
We found that realar demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.