Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
reactive-box
Advanced tools
Minimalistic, fast, and highly efficient reactivity.
API of library implemented by only thee functions:
box
- is the container for an immutable value.sel
- is the cached selector (or computed value in another terminology) who will mark for recalculating on the next call If some of read inside boxes or selectors changed.expr
- is the expression who detects all boxes and selectors read inside and reacted If some of them changed.Example with React:
import React from "react";
import { box, sel, expr } from "reactive-box";
const [getCounter, setCounter] = box(0);
const [getNext] = sel(() => getCounter() + 1);
const increment = () => setCounter(getCounter() + 1);
const decrement = () => setCounter(getCounter() - 1);
const useForceUpdate = () => {
return React.useReducer(() => [], [])[1];
};
const observe = <T extends React.FC>(Component: T) =>
React.memo((props) => {
const forceUpdate = useForceUpdate();
const ref = React.useRef<[T, () => void]>();
React.useEffect(() => ref.current![1], []);
if (!ref.current) {
ref.current = expr(Component, forceUpdate);
}
return ref.current[0](props);
});
const Counter = observe(() => (
<p>
Counter: {getCounter()} (next value: {getNext()})
</p>
));
const Buttons = () => (
<p>
<button onClick={decrement}>Prev</button>
<button onClick={increment}>Next</button>
</p>
);
export const App = () => (
<>
<Counter />
<Buttons />
</>
);
Install
npm i reactive-box
Enjoy!
FAQs
Minimalistic, fast, and highly efficient reactivity
We found that reactive-box demonstrated a healthy version release cadence and project activity because the last version was released less than 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
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
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.