Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

Welcome to Software Development on Codidact!

Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.

Post History

66%
+2 −0
Q&A How to run a remote JavaScript file from GitHub?

As you're using userscripts, I'm assuming this code is supposed to run in a browser. Hence, you could download the scripts and add its contents to the page's DOM (by using a script element). For t...

posted 2y ago by hkotsubo‭  ·  edited 2y ago by hkotsubo‭

Answer
#2: Post edited by user avatar hkotsubo‭ · 2021-09-14T19:27:08Z (over 2 years ago)
  • As you're using userscripts, I'm assuming this code is supposed to run in a browser. Hence, you could download the scripts and add its contents to the page's DOM (by using a `script` element).
  • For that, you can use the [Fetch API](https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API):
  • ```javascript
  • fetch('http://your.script.url', { cache: "no-store" }) // get the script without caching
  • .then(resp => resp.text()) // get script's content as text
  • .then(function(text) {
  • // add script text to DOM
  • let script = document.createElement('script');
  • script.innerText = text;
  • document.body.appendChild(script);
  • /************************************************************/
  • /* Here you do whatever you need after the script is loaded */
  • /************************************************************/
  • });
  • ```
  • I used the `cache: "no-store"` option to not use browser's cache, but you can change that if you want. Check all the available options in the [documentation](https://developer.mozilla.org/en-US/docs/Web/API/Request/cache).
  • After loading the script, I get all its contents and add it to the page's DOM by creating a `script` element and setting its text to be the script's content.
  • ---
  • It's important to note that all the code that depends on the script must be inside the callback, because the Fetch API relies on [Promises](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise), so if you try to do it outside the callback, it might not work:
  • ```javascript
  • fetch('http://your.script.url', { cache: "no-store" })
  • .then(resp => resp.text())
  • .then(function(text) {
  • let script = document.createElement('script');
  • script.innerText = text;
  • document.body.appendChild(script);
  • // code that depends on the script must be here
  • });
  • // code that depends on the script must NOT be here
  • ```
  • If you put the code outside the callback, it might run before the script is fully loaded. Only inside the callback your code is guaranteed to work, because there we know for sure that the script was completely loaded.
  • As you're using userscripts, I'm assuming this code is supposed to run in a browser. Hence, you could download the scripts and add its contents to the page's DOM (by using a `script` element).
  • For that, you can use the [Fetch API](https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API):
  • ```javascript
  • fetch('http://your.script.url', { cache: "no-store" }) // get the script without caching
  • .then(resp => resp.text()) // get script's content as text
  • .then(function(text) {
  • // add script text to DOM
  • let script = document.createElement('script');
  • script.innerText = text;
  • document.body.appendChild(script);
  • /************************************************************/
  • /* Here you do whatever you need after the script is loaded */
  • /************************************************************/
  • });
  • ```
  • I used the `cache: "no-store"` option to not use browser's cache, but you can change that if you want. Check all the available options in the [documentation](https://developer.mozilla.org/en-US/docs/Web/API/Request/cache).
  • After loading the script, I get all its contents and add it to the page's DOM by creating a `script` element and setting its text to be the script's content.
  • ---
  • It's important to note that all the code that depends on the script must be inside the callback, because the Fetch API relies on [Promises](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise), so if you try to do it outside the callback, it might not work:
  • ```javascript
  • fetch('http://your.script.url', { cache: "no-store" })
  • .then(resp => resp.text())
  • .then(function(text) {
  • let script = document.createElement('script');
  • script.innerText = text;
  • document.body.appendChild(script);
  • // code that depends on the script must be here
  • });
  • // code that depends on the script must NOT be here
  • ```
  • If you put the code outside the callback, it might run before the script is fully loaded. Only inside the callback your code is guaranteed to work, because there we know for sure that the script was completely loaded.
  • ---
  • You could extend that to load lots of scripts, and use [`Promise.all`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise/all) to make sure all were loaded:
  • ```javascript
  • const urls = ['script1.url', 'script2.url', 'script3.url']; // add as many as you want
  • const scripts = [];
  • for (const url of urls) {
  • scripts.push(fetch(url, { cache: 'no-store' }).then(resp => resp.text()));
  • }
  • Promise.all(scripts)
  • // this runs only after all scripts are loaded
  • .then(function(texts) {
  • // add all scripts to page's DOM
  • for (const text of texts) {
  • let script = document.createElement('script');
  • script.innerText = text;
  • document.body.appendChild(script);
  • }
  • // code that depends on the scripts must be here
  • });
  • // code that depends on the scripts must NOT be here
  • ```
#1: Initial revision by user avatar hkotsubo‭ · 2021-09-14T18:28:43Z (over 2 years ago)
As you're using userscripts, I'm assuming this code is supposed to run in a browser. Hence, you could download the scripts and add its contents to the page's DOM (by using a `script` element).

For that, you can use the [Fetch API](https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API):

```javascript
fetch('http://your.script.url', { cache: "no-store" }) // get the script without caching
    .then(resp => resp.text()) // get script's content as text
    .then(function(text) {
        // add script text to DOM
        let script = document.createElement('script');
        script.innerText = text;
        document.body.appendChild(script);

        /************************************************************/
        /* Here you do whatever you need after the script is loaded */
        /************************************************************/
    });
```

I used the `cache: "no-store"` option to not use browser's cache, but you can change that if you want. Check all the available options in the [documentation](https://developer.mozilla.org/en-US/docs/Web/API/Request/cache).


After loading the script, I get all its contents and add it to the page's DOM by creating a `script` element and setting its text to be the script's content.

---

It's important to note that all the code that depends on the script must be inside the callback, because the Fetch API relies on [Promises](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise), so if you try to do it outside the callback, it might not work:

```javascript
fetch('http://your.script.url', { cache: "no-store" })
    .then(resp => resp.text())
    .then(function(text) {
        let script = document.createElement('script');
        script.innerText = text;
        document.body.appendChild(script);

        // code that depends on the script must be here
    });

// code that depends on the script must NOT be here
```

If you put the code outside the callback, it might run before the script is fully loaded. Only inside the callback your code is guaranteed to work, because there we know for sure that the script was completely loaded.