
Security News
TypeScript is Porting Its Compiler to Go for 10x Faster Builds
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
@codama/errors
Advanced tools
This package defines a CodamaError
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 @codama/errors
[!NOTE] This package is included in the main
codama
package. Meaning, you already have access to its content if you are installing Codama this way.pnpm install codama
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 @codama/errors decode -- 123
When you catch a CodamaError
and assert its error code using isCodamaError()
, 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 { CODAMA_ERROR__UNEXPECTED_NODE_KIND, isCodamaError } from '@codama/errors';
try {
const codama = createFromJson(jsonIdl);
} catch (e) {
if (isCodamaError(e, CODAMA_ERROR__UNEXPECTED_NODE_KIND)) {
const { expectedKinds, kind, node } = e.context;
// ...
} else if (isCodamaError(e, CODAMA_ERROR__VERSION_MISMATCH)) {
const { codamaVersion, rootVersion } = e.context;
// ...
} else {
throw e;
}
}
To add a new error in Codama, 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.CodamaErrorCode
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`.'
).@codama/errors
using changesets — maintainers will handle this via tha changesets CI workflow.@codama/errors
or codama
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 Codama
We found that @codama/errors 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
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.