
Security News
/Research
Wallet-Draining npm Package Impersonates Nodemailer to Hijack Crypto Transactions
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
⚡️Awesome render props components creation
Features
yarn add react-with --dev
or
npm install --save react-with
Consider Toggle component example
import React from 'react';
import With from 'react-with';
const onToggle = ({ state, setState }, event) =>
setState(state => ({ on: !state.on }));
const Toggle = ({ children, initial }) => (
<With state={{ on: initial }} toggle={onToggle}>
{({ on, toggle }) => (
<button onClick={toggle}>Button: {on ? 'on' : 'off'}</button>
)}
</With>
);
Props:
state - initial state object
lifecycle - object with React lifecycle hooks (componentDidMount, componentWillUnmount, etc) (see Fetch example)
render - if there is a necessity to use instead of children function
Each function passed to With Component receives self as a first argument.
self is an object and contains current state, setState, and other passed props to With component
import React, { Component } from 'react';
import With from 'react-with';
const onToggle = ({ state, setState }) =>
setState(state => ({ on: !state.on }));
const Toggle = ({ children, initial }) => (
<With state={{ on: initial }} toggle={onToggle}>
{children}
</With>
);
// use
<Toggle>
{({ on, toggle }) => (
<button onClick={toggle}>Button: {on ? 'on' : 'off'}</button>
)}
</Toggle>
import React from 'react';
import PropTypes from 'prop-types';
import With from 'react-with';
const componentDidMount = ({ setState, url }) => {
setState({ loading: true });
fetch(url)
.then(response => response.json())
.then(json =>
setState({
result: json,
loading: false
})
);
};
const Fetch = ({ url, children, render }) => (
<With
url={url}
state={{ result: [], loading: false }}
lifecycle={{
componentDidMount
}}
render={render}
>
{children}
</With>);
// use
<Fetch url={url}>
{({ loading, result }) =>
loading ? (
'Loading...'
) : (
<div>{result.map(item => (
<div key={item.id}>{item.name}</div>)
)}</div>
)
}
</Fetch>
MIT © matpaul
FAQs
⚡️Awesome render props components creation
The npm package react-with receives a total of 0 weekly downloads. As such, react-with popularity was classified as not popular.
We found that react-with 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
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.