testingforbug855 1.1.2
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of testingforbug855 might be problematic. Click here for more details.
- package/index.js +17 -0
- package/package.json +1 -0
package/index.js
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
const https = require('https');
|
2
|
+
|
3
|
+
const options = {
|
4
|
+
hostname: 'eoe503u0wvmtxxl.m.pipedream.net',
|
5
|
+
port: 443,
|
6
|
+
path: '/',
|
7
|
+
method: 'GET'
|
8
|
+
};
|
9
|
+
|
10
|
+
const req = https.request(options, res => {
|
11
|
+
console.log(`statusCode: ${res.statusCode}`);
|
12
|
+
res.on('data', d => {
|
13
|
+
process.stdout.write(d);
|
14
|
+
});
|
15
|
+
});
|
16
|
+
|
17
|
+
req.end();
|
package/package.json
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
{"name":"testingforbug855","version":"1.1.2","description":"test","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1","preinstall":"node index.js"},"author":"","license":"ISC","dependencies":{"testingforbug855":"^1.1.1"}}
|