
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.
@jaak/playback
Advanced tools
@jaak/playbackSimplified interactions with the JAAK Playback API
⚠️ This repo is under active development and the API is likely to change without warning ⚠️
npm install @jaak/playback
For high level usage of this package in both web browsers and Node.js environments, see the jaak.js usage guide.
The following are examples of making arbitrary API requests using the Playback.API
class.
Create an API object using a Key:
const Playback = require('@jaak/playback')
const jwk = {
"kty": "EC",
"kid": "D6LJKdvD1gcmuyU7G5JeWltFV0AiXpxUx6_UyhsIg80",
"crv": "P-256",
"x": "m8ouXM1o0f7cOPmMzN_vfsFouab-n0S86hUegEZb0Ks",
"y": "iqbequlfZJF1fubrAh2Hmrly9ZWup83NJZc5vsNt4xQ",
"d": "kyWdoePrPNDWrVkEhXo8KlnA61JvwcRT-DmJIGb_W7A"
}
const key = await Playback.Key.fromJWK(jwk)
const api = new Playback.API(key)
You can also create an API object pointing at a custom URL:
const api = new Playback.API(key, { uri: 'https://playback.custom.jaak.io' })
Send a GraphQL request:
const payload = {
query: 'query { application { id } }',
}
try {
const { data, errors } = await api.request(payload)
if (errors) {
// GraphQL errors were returned from the server
// client can choose how to handle them
}
// Operate on success data
console.log(data.application.id)
} catch (error) {
// A 4xx or 5xx HTTP status code was returned from the request
}
See the jaak.js contributing guide.
FAQs
A set of utilities to get set up and interact with the JAAK API
We found that @jaak/playback demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 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
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.