
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.
=======
A fun module that helps you randomly remove people from a game. Do you have a tie? Use outcast to break the tie.
npm install outcast
var outcast = require('outcast');
You can remove as many players from the game at a time as you want. (Defaults to one)
Now with cli capability - so you can you it from your terminal
npm install -g outcast
outcast -r bill john mike sarah // Remove one (use -r)
outcast -R 2 bill john mike sarah // Remove [num] passed in (use -R [num])
outcast -r -s "bill john mike sarah" // Pass as string
outcast -w bill john mike sarah // Pick a winner
var gamePlayers = ['John', 'Bill', 'Sarah', 'Mike', 'Rebecka'];
OR
var gamePlayers = 'John Bill Sarah Mike Rebecka'; // Space delimited
outcast.remove(gamePlayers);
['John', 'Sarah', 'Mike', 'Rebecka'] // Removes a random value
var gamePlayers = 'John Bill Sarah Mike Rebecka'; // Space delimited
outcast.remove(gamePlayers, 3);
['Bill', 'Mike'] // Removes 3 random value
var gamePlayers = 'John Bill Sarah Mike Rebecka'; // Space delimited
outcast.winner(gamePlayers);
['Sarah'] // Pick a random value
FAQs
A tool to randomly remove a person from the game or pick a winner
The npm package outcast receives a total of 0 weekly downloads. As such, outcast popularity was classified as not popular.
We found that outcast 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.