New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@block65/hello-http

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@block65/hello-http - npm Package Compare versions

Comparing version
1.0.2
to
1.0.3
+6
-1
dist/index.js

@@ -5,2 +5,3 @@ #!/usr/bin/env node

const express = require("express");
const https = require("https");
const app = express();

@@ -24,2 +25,6 @@ const port = process.env.PORT || 3000;

app.get('/health', (req, res) => res.send({ status: 'OK' }));
app.listen(port, () => console.log(`Listening at http://localhost:${port}`));
const httpsServer = https.createServer({
cert: process.env.CERTIFICATE,
key: process.env.CERTIFICATE_PRIVATE_KEY,
}, app);
httpsServer.listen(port, () => console.log(`Listening at https://localhost:${port}`));
+1
-1
{
"name": "@block65/hello-http",
"version": "1.0.2",
"version": "1.0.3",
"private": false,

@@ -5,0 +5,0 @@ "license": "UNLICENSED",