
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.
Client for Seven-Ten
# clone the repository and install the dependencies
git clone https://github.com/zooniverse/Seven-Ten-Client.git
cd Seven-Ten-Client
npm install .
npm testnpm run lintnpm run version, also
Communicates with the API.
Client.config = {
host: 'https://seven-ten-staging.zooniverse.org', // The API host
headers: zooAPI.headers // Headers (e.g. Authentication) to send with requests
};
Client.current(); // Provides a singleton client instance
Manages the current splits
Split.load('owner/project-name').then((splits) => {
// ...
}); // Load all active splits by project slug
// To create metric-tracking events for splits;
Split.classificationCreated(classification);
// or
Split.classifierVisited();
Provides a component that displays a text split.
splitKey corresponds to split.key
textKey corresponds to the property storing text in variant.value
<TextSplit
splitKey="landing.text"
textKey="description"
splits={this.props.splits}
default="The default description"
/>
Provides a component that toggles element visibility
splitKey corresponds to split.key
elementKey corresponds to the property storing the on/off boolean in variant.value
<VisibilitySplit
splitKey="mini-course.visible"
elementKey="button"
splits={this.props.splits}
>
<p>This will be shown if it's visible, otherwise it won't</p>
</VisibilitySplit>
FAQs
React client for Seven-Ten
The npm package seven-ten receives a total of 132 weekly downloads. As such, seven-ten popularity was classified as not popular.
We found that seven-ten demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 9 open source maintainers 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.