
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.
@moromis/ballchasing
Advanced tools
This package provides a wrapper around the ballchasing.com API.
npm i ballchasing
or
yarn add ballchasing
const {BallChasingAPI} = require("ballchasing");
const bc = new BallChasingAPI("your-api-key-here");
;(async () => {
// ping the ballchasing.com api server
// This tests connectivity to the server
// and your API key
const pingResponse = await bc.ping();
// get a list of maps
const mapsResponse = await bc.getMaps();
// get replays by player "noot" from Jan 1 2020 to Jan 1 2021 on map "park_p"
// sorted ascending by the date of the replay
const replaysResponse = await bc.listReplays({
playerName: "noot",
createdAfter: "2020-01-01T00:00:00-05:00",
createdBefore: "2021-01-01T00:00:00-05:00",
map: "park_p",
sortBy: "replay-date",
sortDir: "asc"
});
})();
FAQs
Provides a wrapper around the ballchasing.com API
The npm package @moromis/ballchasing receives a total of 3 weekly downloads. As such, @moromis/ballchasing popularity was classified as not popular.
We found that @moromis/ballchasing 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.