
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
kimono-worldcup-api-wrapper
Advanced tools
npm API wrapper for Kimono World Cup API
npm install kimono-worldcup-api-wrapper
- [q]: https://github.com/kriskowal/q-connection
- [querystring]: https://github.com/Gozala/querystring
- [request]: http://github.com/mikeal/request
//Include the package
var worldCup = require('kimono-worldcup-api-wrapper');
//Initialize with API Key
var worldCupApi = worldCup('*** Kimono API Key***');
worldCupApi.get.players().done(function(res){
console.log(res);
});
worldCupApi.get.Players(filters(optional))
- Takes Optional filters (ie '{ sort : position }')
- Returns a promise with the API response
worldCupApi.get.players().done(function(res){
console.log(res);
});
worldCupApi.get.Player(id, filters(optional))
- Required player ID
- Takes Optional filters (ie '{ sort : position }')
- Returns a promise with the API response
worldCupApi.get.player('** players ID**').done(function(res){
console.log(res);
});
worldCupApi.get.Teams(filters(optional))
- Takes Optional filters (ie '{ sort : position }')
- Returns a promise with the API response
worldCupApi.get.players().done(function(res){
console.log(res);
});
worldCupApi.get.Team(id, filters(optional))
- Required Team ID
- Takes Optional filters (ie '{ sort : position }')
- Returns a promise with the API response
worldCupApi.get.Teams().done(function(res){
console.log(res);
});
worldCupApi.get.Matches(filters(optional))
- Takes Optional filters (ie '{ sort : position }')
- Returns a promise with the API response
worldCupApi.get.Match(id, filters(optional))
- Required Match ID
- Takes Optional filters (ie '{ sort : position }')
- Returns a promise with the API response
worldCupApi.get.player_season_stats(id(optional), filters(optional))
- Optional Player ID
- Takes Optional filters (ie '{ sort : position }')
- Returns a promise with the API response
FAQs
World Cup API Wrapper
The npm package kimono-worldcup-api-wrapper receives a total of 0 weekly downloads. As such, kimono-worldcup-api-wrapper popularity was classified as not popular.
We found that kimono-worldcup-api-wrapper 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.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.