
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.
faceit-node-api
Advanced tools
Lightweight node.js module for easier use of the Faceit Data API.
On the 27th of September, 2022, this module covers all the Data APIs provided by Faceit. Please check the latest documentation from the Official Faceit Developers web page.
Example of usage:
import { Faceit, Players, Tournaments } from 'faceit-node-api';
Faceit.setApiKey('your_api_key');
const players = new Players();
const tournaments = new Tournaments();
const playerDetails = await players.getPlayerDetailsByNickname('your_nickname');
// do something with received players data from the Faceit API
const tournamentMatches = await tournaments.getMatchesOfATournament(
'your_tournament_id',
{ limit: 20, offset: 10 }
);
// do something with received tournaments data from the Faceit API
Note that limit and offset aren't required attributes, and by default, they are equal to 20 and 0, respectively.
FAQs
Lightweight node.js module for easier use of the Faceit Data API.
We found that faceit-node-api demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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.