Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
grpc-web-error-details
Advanced tools
Utility function for deserializing `grpc-status-details-bin` metadata on grpc-web
Utility function for deserializing the grpc-web-details-bin
metadata value when using grpc-web.
gRPC provides two models of error handling: standard error model and richer error model.
Standard error model, which consists of an error status code and optional string error message, is the "official" gRPC error model.
If you're using protocol buffers, you can also use the richer error model developed and used by Google (click here for more about the error model). This model allows servers to return and clients to consume additional error details as one or more protobuf messages. It also defines a standard set of error message types to cover the most common error cases.
grpc-web, the official JavaScript implementation of gRPC for browser clients, only supports the standard error model. The error details are encoded in grpc-web-details-bin
metadata field. However, deserializing the data is not trivial.
This library provides an utility function that takes an error and returns the deserialized Status message and the array of deserialized error details (comparable to Go's status.FromError
and similar functions in other languages whose gRPC client supports the richer error model).
If you're looking to use the richer error model on Node.js, check out @stackpath/node-grpc-error-details
.
yarn add grpc-web-error-details
# or if you're using npm
npm install grpc-web-error-details --save
This library also needs grpc-web
and google-protobuf
, which are required by gRPC Web clients.
Use statusFromError
to deserialize error to Status and an array of error details. It returns a pair of status and an array of error details.
function statusFromError(err: any): [Status, ErrorDetails[]] | [null, null];
The function returns null if the passed error is not deserializable.
Call the function with an error object and if the return values are not null, call methods and use type assertions to handle errors.
import * as errorDetails from "./grpc-web-error-details";
// promise client
try {
grpcWebPromiseClient.call();
} catch (e) {
const [status, details] = errorDetails.statusFromError(e);
if (status && details) {
for (const d of details) {
// use `instanceof` for type guard
if (d instanceof errorDetails.BadRequest) {
// use appropriate methods on details for further information
for (const v of d.getFieldViolationsList()) {
console.log(
`Violation at field ${v.getField()}: ${v.getDescription}`
);
}
}
}
}
}
// callback client
grpcWebClient.call(req, {}, (err, response) => {
if (!err) {
// RPC Success
return;
}
const [status, details] = errorDetails.statusFromError(err);
// handle richer error with status and details
});
Take a look at sample/client-js/index.ts
for more examples. You can start the sample gRPC server and Envoy proxy by running docker-compose up
inside ./sample
, and use yarn ts-node sample/client-js/index.ts
to run the client sample.
FAQs
Utility function for deserializing `grpc-status-details-bin` metadata on grpc-web
The npm package grpc-web-error-details receives a total of 1 weekly downloads. As such, grpc-web-error-details popularity was classified as not popular.
We found that grpc-web-error-details 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.