Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
change-notifier
Advanced tools
Dead-simple state notifier for React. Under 1kb. Inspired by (meaning ported from!) Flutter.
yarn add change-notifier
Made this to scratch a personal itch where I wanted to use EventEmitter
as a lightweight state tool for React,
to which tiny-emitter
is an awesome package for React Native! However, hooks weren't built in.
While considering building a useTinyEmitter
hook, I remembered that Flutter had a similar pattern that I really liked.
import React from 'react';
import {
ChangeNotifier,
useChangeNotifier,
ValueNotifier,
useValueNotifier,
} from 'change-notifier';
class Timer extends ChangeNotifier {
constructor() {
setInterval(() => {
this.notifyListeners();
}, 1000);
}
}
class TimerAlt extends ValueNotifier<number> {
constructor() {
super(Date.now());
setInterval(() => {
this.value = Date.now();
}, 1000);
}
}
const TIMER = new Timer();
const TIMER_ALT = new TimerAlt();
function App() {
useChangeNotifier(TIMER);
return (
<>
<div>The timestamp is:</div>
<div>{Date.now()}</div>
</>
);
}
function AppAlt() {
const now = useValueNotifier(TIMER_ALT);
return (
<>
<div>The timestamp is:</div>
<div>{now}</div>
</>
);
}
FAQs
Dead-simple state notifier for React. Under 1kb. Inspired by Flutter.
The npm package change-notifier receives a total of 2 weekly downloads. As such, change-notifier popularity was classified as not popular.
We found that change-notifier 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
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.