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

exframe-testing

Package Overview
Dependencies
Maintainers
1
Versions
46
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

exframe-testing - npm Package Compare versions

Comparing version 3.4.0 to 3.5.0

8

cli.js

@@ -54,3 +54,4 @@ #!/usr/bin/env node

const servicePort = serviceConfig.port || Number(config.default.PORT) || 80;
const serviceHealthPath = serviceConfig.healthPath || '/health';
const serviceHealthPath = serviceConfig.healthPath || '/health/readiness';
const legacyHealthPath = '/health';
const dockerComposeExists = fs.existsSync('./docker-compose.yml');

@@ -83,3 +84,6 @@ let defaultArgs = argv._;

let logMessage = -1;
const attempt = () => axios.get(`http://localhost:${servicePort}${serviceHealthPath}`)
const attempt = () => Promise.any([
axios.get(`http://localhost:${servicePort}${serviceHealthPath}`),
axios.get(`http://localhost:${servicePort}${legacyHealthPath}`)
])
.then(

@@ -86,0 +90,0 @@ () => log.info('service running'),

{
"name": "exframe-testing",
"version": "3.4.0",
"version": "3.5.0",
"bin": {

@@ -52,3 +52,3 @@ "exframe-testing": "cli.js"

},
"gitHead": "846806709f00dedc764c794b3ee05ca3c7297244"
"gitHead": "6c09763669b90802745d12200803ac186a6dc5ae"
}
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