New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

gracefultools

Package Overview
Dependencies
Maintainers
6
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gracefultools - npm Package Compare versions

Comparing version 2.1.1 to 2.1.2-alpha.0

9

index.js

@@ -42,6 +42,11 @@ const debug = require('debug')('gracefultools');

const start = (app, options, handler) => {
const { host, port: desiredPort, timeout } = options;
const { timeout, port: desiredPort } = options;
const port = desiredPort || 3000;
const message = `Server listening on http://${host || 'localhost'}:${port}`;
const protocol = options.secure ? 'https' : 'http';
const host = options.host || 'localhost';
const address = `${protocol}://${host}:${port}`;
const message = `Server listening on ${address}`;
if (typeof timeout === 'number') processTimeout = timeout;

@@ -48,0 +53,0 @@ onClose = handler;

@@ -9,3 +9,3 @@ {

"bugs": "https://github.com/good-hood-gmbh/gracefultools/issues",
"version": "2.1.1",
"version": "2.1.2-alpha.0",
"keywords": [

@@ -12,0 +12,0 @@ "express",

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc