The repo explain the different way to load script tag containing JavaScript onto you website.
Install Packages
npm install
Start the server
npm start
Access you server via http://localhost:5000
This repo demonstrates the 5 ways import JavaScript via <script>
tag
- Normal Script Tag
<script>
function createWorld() {
const h2Element = document.createElement('h2');
h2Element.innerHTML = 'Content loaded via script tag';
document.body.appendChild(h2Element);
}
createWorld();
</script>
- Script Tag with local Resource file
<script src="./assets/js/main.js"></script>
- Script Tag with External Resource file
<script src="//grvpanchal.ml/assets/js/createExternalWorld.js"></script>
- Script Tag that dynamically loads a script file
<script>
function loadScriptDynamically(src) {
const scriptElement = document.createElement('script');
scriptElement.src = src;
document.head.appendChild(scriptElement);
}
setTimeout(() => loadScriptDynamically('./assets/js/createDynamicInsertWorld.js'), 3000);
</script>
- Script Tag that supports ES6 Module Import
<script src="assets/js/app.js" type="module"></script>
I hope I have covered all ways. Address bar way not considered. Please let me know if you guys know additional