
Security News
Meet Socket at Black Hat and DEF CON 2025 in Las Vegas
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
@types/stoppable
Advanced tools
TypeScript definitions for stoppable
npm install --save @types/stoppable
This package contains type definitions for stoppable (https://github.com/hunterloftis/stoppable).
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/stoppable.
/// <reference types="node" />
import * as http from "http";
import * as https from "https";
declare namespace stoppable {
// Left for backwards compatibility
type StoppableServer = http.Server & WithStop;
interface WithStop {
/**
* Closes the server.
*
* @param callback Passed along to the existing `server.close` function to
* auto-register a `'close'` event. The first agrument is an error, and
* the second argument indicates whether it stopped gracefully.
*/
stop(callback?: (e: Error | undefined, gracefully: boolean) => any): void;
}
}
/**
* Decorates a server instance with a `stop` method.
*
* @param server Any HTTP or HTTPS Server instance.
* @param grace Milliseconds to wait before force-closing connections. Defaults to
* `Infinity` (don't force-close). If you want to immediately kill all sockets
* you can use a grace of `0`.
* @returns The server instance, so can be chained, or can be run as a standalone statement.
*
* @example
* import * as http from 'http';
* import stoppable = require('stoppable');
*
* const server = stoppable(http.createServer((req, res) => {}));
* server.stop();
*/
declare function stoppable<T extends http.Server | https.Server>(server: T, grace?: number): T & stoppable.WithStop;
export = stoppable;
These definitions were written by Eric Byers, John Plusjé, and BendingBender.
FAQs
TypeScript definitions for stoppable
The npm package @types/stoppable receives a total of 156,123 weekly downloads. As such, @types/stoppable popularity was classified as popular.
We found that @types/stoppable 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
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.