
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
iris-validation
Advanced tools
This repository contains the code for the published npm installable iris-validation package.
To install the published iris-validation
npm install iris-validation@latest
An example of using the component with the provided random test data is shown here:
import {Iris, IrisData, IrisAesthetics, IrisProps, generate_random_data} from "iris-validation"
import { ExampleProps } from '../interface/interface';
export function Example(props: ExampleProps) {
const random_data = generate_random_data(5) // get 5 metric rings
const aes: IrisAesthetics = {
dimensions: [1000,1000],
radius_change: 50,
header: 40,
text_size: 12
}
const results: IrisData = {
data: random_data,
chain_list: ["A", "B", "C"],
file_list: ["input1"],
} // results for use with generate_random_data
const iris_props: IrisProps = {
results: results,
from_wasm: false,
aesthetics: aes,
callback: (residue) => {
console.log("RESIDUE CLICKED", residue)
}
}
return (
<Iris {...iris_props}></Iris>
);
}
To install this repository
git clone https://github.com/Dialpuri/iris-validation.git
cd iris-validation
npm ci
npm run build
Before any commits to this repository the following code must run and pass
npm run prettier
npm run lint
FAQs
Iris is a visualisation aid for protein structure validation
The npm package iris-validation receives a total of 29 weekly downloads. As such, iris-validation popularity was classified as not popular.
We found that iris-validation 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.