Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
@reactive-js/core
Advanced tools
Fast modern reactive Javascript programming library.
ReactiveJS is an isomorphic library which supports all modern ecmascript platforms including Node.js (v16 and up), Deno, and modern browsers.
Reactive JS can be added to your npm based project using the @reactive-js/core packages.
yarn add @reactive-js/core
Both Ecmascript and Typescript modules that may be directly imported into your project are available in the mod directory of this repo. These modules are all Deno compatible. We recommend referencing specifically tagged releases of these files in your projects.
import * as Observable from "@reactive-js/core/Observable";
import {
SideEffect,
bindMethod,
incrementBy,
pipe,
returns,
} from "@reactive-js/core/functions";
import * as Scheduler from "@reactive-js/core/Scheduler";
import {
DisposableLike_dispose,
SchedulerLike_schedule,
} from "@reactive-js/core/types";
const scheduler = Scheduler.createHostScheduler();
const subscription = pipe(
Observable.generate(incrementBy(1), returns(0), { delay: 1 }),
Observable.throttle(2000),
Observable.map(x => `${x}`),
Observable.forEach(x => console.log(x)),
Observable.subscribe(scheduler),
);
scheduler[SchedulerLike_schedule](
bindMethod(subscription, DisposableLike_dispose) as SideEffect,
{ delay: 20000 },
);
FAQs
Fast modern reactive Javascript programming library.
The npm package @reactive-js/core receives a total of 132 weekly downloads. As such, @reactive-js/core popularity was classified as not popular.
We found that @reactive-js/core 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
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.