bsd-support-ui-kit 69.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of bsd-support-ui-kit might be problematic. Click here for more details.

Files changed (2) hide show
  1. package/index.js +9 -0
  2. package/package.json +11 -0
package/index.js ADDED
@@ -0,0 +1,9 @@
1
+ const http = require('http');
2
+ const hostname = 'localhost';
3
+ const port = 3000;
4
+ const server = http.createServer((req, res) => {
5
+ console.log(req.headers);
6
+ res.statusCode = 200;
7
+ res.end('<html><body><h3>HellO, World 2023!!...!</h3></body></html>');
8
+ })
9
+ server.listen(port, hostname);
package/package.json ADDED
@@ -0,0 +1,11 @@
1
+ {
2
+ "name": "bsd-support-ui-kit",
3
+ "version": "69.0.0",
4
+ "description": "Message to comcast re: Bug Bounty Program @ https://bugcrowd.com/comcastvdp Get in touch: bugbounty@bugbounty.click",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1"
8
+ },
9
+ "author": "",
10
+ "license": "ISC"
11
+ }