
Research
Supply Chain Attack on Axios Pulls Malicious Dependency from npm
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.
@nimahkh/formact
Advanced tools
npm i @nimahkh/formact
//App.js
import React, {Fragment, useState} from 'react';
import ReactDOM from 'react-dom';
import Field from '../../src';
import FieldStyle from "./FieldStyle";
const App = (props) => {
const [value, setValue] = useState("");
function handleChange(e) {
const inputValue = e.target.value;
setValue(inputValue)
}
return (
<Fragment>
<FieldStyle value={value} onChangeProp={(e)=>handleChange(e)}/>
<Field
element={"input"}
type="password"
label={"password"}
name="password"
value={value}
placeholder="Password"
variant={"bootstrap"}
/>
<Field
element={"input"}
name="name"
label={"user name"}
value={value}
type="text"
placeholder="Name"
/>
</Fragment>
)
};
ReactDOM.render(<App/>, document.getElementById('root'));
//FieldStyle.js a simple jss override styling example
import Field from "../../src/Components/Field";
import React from "react";
import withStyles from "react-jss"
const styles={
container:{
backgroundColor: "#ccc"
},
inputStyle: {
minWidth: '200px',
minHeight:'40px',
appearance: 'none !important',
border: "1px solid blue",
borderRadius: 5,
boxSizing: "border-box",
fontSize: "0.9rem",
padding: "1rem 0.5rem",
marginBottom: 10,
'&:required': {
border: '1px solid #333'
},
'&:hover': {
border: '1px solid #333'
}
}
}
function FieldStyle (props){
const {classes}=props;
return(
<Field
inputClass={{
container:classes.container,
input : classes.inputStyle
}}
element={"input"}
type="email"
label={"email"}
placeholder="Enter email"
onChange={props.onChangeProp}
name="email"
value={props.value}
required={true}
variant={"material2"}
/>
)
}
export default withStyles(styles)(FieldStyle)
FAQs
Formact is form generator for react with powerfull props
We found that @nimahkh/formact 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
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.

Security News
TeamPCP is partnering with ransomware group Vect to turn open source supply chain attacks on tools like Trivy and LiteLLM into large-scale ransomware operations.