
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.
@kinobi-so/errors
Advanced tools
This package defines a KinobiError class that accepts a specific error code and a context object based on that code. It enables us to catch and handle errors in a more structured way.
pnpm install @kinobi-so/errors
[!NOTE] This package is included in the main
kinobipackage. Meaning, you already have access to its content if you are installing Kinobi this way.pnpm install kinobi
When the NODE_ENV environment variable is not set to "production", every error message will be included in the bundle. As such, you will be able to read them in plain language wherever they appear.
On the other hand, when NODE_ENV is set to "production", error messages will be stripped from the bundle to save space. Only the error code will appear when an error is encountered. Follow the instructions in the error message to convert the error code back to the human-readable error message.
For instance, to recover the error text for the error with code 123:
npx @kinobi-so/errors decode -- 123
When you catch a KinobiError and assert its error code using isKinobiError(), TypeScript will refine the error's context to the type associated with that error code. You can use that context to render useful error messages, or to make context-aware decisions that help your application to recover from the error.
import { KINOBI_ERROR__UNEXPECTED_NODE_KIND, isKinobiError } from '@kinobi-so/errors';
try {
const kinobi = createFromJson(jsonIdl);
} catch (e) {
if (isKinobiError(e, KINOBI_ERROR__UNEXPECTED_NODE_KIND)) {
const { expectedKinds, kind, node } = e.context;
// ...
} else if (isKinobiError(e, KINOBI_ERROR__VERSION_MISMATCH)) {
const { kinobiVersion, rootVersion } = e.context;
// ...
} else {
throw e;
}
}
To add a new error in Kinobi, follow these steps:
src/codes.ts. Find the most appropriate group for your error and ensure it is appended to the end of that group.KinobiErrorCode union in src/codes.ts.src/context.ts.src/messages.ts. Any context values that you defined above will be interpolated into the message wherever you write $key, where key is the index of a value in the context (eg. 'Unrecognized node `$kind`.').@kinobi-so/errors using changesets — maintainers will handle this via tha changesets CI workflow.@kinobi-so/errors or kinobi in the consumer package from which the error is thrown.When an older client throws an error, we want to make sure that they can always decode the error. If you make any of the changes above, old clients will, by definition, not have received your changes. This could make the errors that they throw impossible to decode going forward.
FAQs
Error management for Kinobi
We found that @kinobi-so/errors 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.