Created Remote Script Execution (markdown)

Namhyeon Go 2024-07-22 01:10:51 +09:00
parent 5731988bda
commit cf9a2dc4ab

@ -0,0 +1,13 @@
## Remote Script Execution
Starting from version 0.2.7.19, WelsonJS supports the Remote Script Execution feature. You can test it as follows:
```sh
cscript app.js https://pub-f926e14287b340cd9eff33731bb25329.r2.dev/helloworld.js
```
If you want to use it within your code, you can do it like this:
```js
var HELO = require("https://pub-f926e14287b340cd9eff33731bb25329.r2.dev/helloworld.js");
HELO.main();
```