
Security News
New CVE Forecasting Tool Predicts 47,000 Disclosures in 2025
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.
nice-grpc-server-middleware-terminator
Advanced tools
Server middleware for nice-grpc to terminate long-running calls on shutdown
Server middleware for nice-grpc that makes it possible to prevent long-running calls from blocking server graceful shutdown.
When server.shutdown()
is called, the server stops accepting new calls, but
the returned promise only resolves once all inflight requests finish. If you
have a long-running call like an infinite stream, the shutdown will block until
the client cancels the call. With this middleware, service implementation
methods can alter this behavior, so that on shutdown the call would be aborted
and clients would receive gRPC error UNAVAILABLE: Server shutting down
.
npm install nice-grpc-server-middleware-terminator
Consider the following service definition with a streaming method:
service ExampleService {
rpc ExampleMethod(ExampleRequest)
returns (stream ExampleResponse) {};
}
In this example implementation we emit a response every second until aborted:
import {ServiceImplementation, CallContext} from 'nice-grpc';
import {TerminatorContext} from 'nice-grpc-server-middleware-terminator';
import {delay} from 'abort-controller-x';
import {
ExampleServiceDefinition,
ExampleRequest,
ExampleResponse,
DeepPartial,
} from './compiled_proto/example';
const exampleServiceImpl: ServiceImplementation<
typeof ExampleServiceDefinition,
TerminatorContext
> = {
async *exampleMethod(
request: ExampleRequest,
context: CallContext & TerminatorContext,
): AsyncIterable<DeepPartial<ExampleResponse>> {
// When `terminatorMiddleware.terminate()` is called, `context.signal` will
// be aborted. Note that the method is still responsible for aborting all
// the work once `context.signal` is aborted.
context.abortOnTerminate();
while (true) {
await delay(context.signal, 1000);
yield {
/* ... */
};
}
},
};
Attach the middleware to the server and terminate it before shutdown:
import {createServer} from 'nice-grpc';
import {TerminatorMiddleware} from 'nice-grpc-server-middleware-terminator';
import {ExampleServiceDefinition} from './compiled_proto/example';
const terminatorMiddleware = TerminatorMiddleware();
const server = createServer().use(terminatorMiddleware);
server.add(ExampleServiceDefinition, exampleServiceImpl);
await server.listen('0.0.0.0:8080');
// ... terminate middleware before shutdown:
terminatorMiddleware.terminate();
await server.shutdown();
FAQs
Server middleware for nice-grpc to terminate long-running calls on shutdown
The npm package nice-grpc-server-middleware-terminator receives a total of 2,885 weekly downloads. As such, nice-grpc-server-middleware-terminator popularity was classified as popular.
We found that nice-grpc-server-middleware-terminator demonstrated a healthy version release cadence and project activity because the last version was released less than 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
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.