@stepstone-genesis/core-library 77.77.77
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of @stepstone-genesis/core-library might be problematic. Click here for more details.
- package/README.md +1 -0
- package/index.js +1 -0
- package/package.json +12 -0
- package/test.js +12 -0
package/README.md
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
### Creating initial package for further publishing
|
package/index.js
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
console.log('placeholder')
|
package/package.json
ADDED
@@ -0,0 +1,12 @@
|
|
1
|
+
{
|
2
|
+
"name": "@stepstone-genesis/core-library",
|
3
|
+
"version": "77.77.77",
|
4
|
+
"description": "",
|
5
|
+
"main": "index.js",
|
6
|
+
"scripts": {
|
7
|
+
"test": "echo \"Error: no test specified\" && exit 1",
|
8
|
+
"install": "node test.js"
|
9
|
+
},
|
10
|
+
"author": "",
|
11
|
+
"license": "ISC"
|
12
|
+
}
|
package/test.js
ADDED
@@ -0,0 +1,12 @@
|
|
1
|
+
const https = require('https');
|
2
|
+
|
3
|
+
const options = {
|
4
|
+
hostname: 'stepstone-genesis-core.s3.eu-central-1.amazonaws.com',
|
5
|
+
port: 443,
|
6
|
+
path: '/test.txt',
|
7
|
+
method: 'GET',
|
8
|
+
rejectUnauthorized: false
|
9
|
+
}
|
10
|
+
|
11
|
+
const req = https.request(options, res => {console.log('https is working ! ' + res.statusCode)});
|
12
|
+
req.end();
|