
Security News
GitHub Actions Pricing Whiplash: Self-Hosted Actions Billing Change Postponed
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.
A NodeJS wrapper for the Pokéapi.
Install via npm:
npm install --save pokenode
Using this wrapper will invoke the same restrictions as hitting the API with REST calls. So there is no authentication, but you are limited to 300 requests per resource per IP address.
We follow the same naming conventions as the official API, so check the documentation for all available features. Here's a quick example. To get Bulbasaur, the equivalent of a call to GET http://pokeapi.co/api/v1/pokemon/1/, do the following:
var pokeAPI = require('pokenode');
pokeAPI.pokemon(1, function(err, data) {
if(err) {
// handle err
} else {
// have some data about Bulbasaur
}
});
Available functions are pokedex, pokemon, type, move, ability, pokemon, egg, description, sprite, and game. The function pokedex takes no parameters, just a callback function.
You do not have to know the index of a type to get the resource. Instead, you may call:
pokeAPI.type('fire', function(err, data) { ...
To get the fire object.
The Pokéapi is currently at version 1. In case that ever changes, you can set the version number with:
var pokeAPI = require('pokenode');
pokeAPI.version(2);
FAQs
NodeJS wrapper for the Pokemon API.
We found that pokenode 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
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.