Ask questions and see you at July, 4th, 8.PM. CET: youtube.com/c/bienadam
Also checkout recent episode:
Please keep the questions Jakarta EE-stic. Means: as short and as concise as only possible. Feel free to ask several, shorter questions. Upcoming airhacks.tv events are also going to be announced at meetup.com/airhacks
HI Adam,
dynamic import in JavaScript.
i want dynamicly import in JavaScript, because sometimes i let run my JavaScript-App local on my pc, sometimes in the Cloud
Example for run local:
import { content01 } from "http://localhost:8182/lib/env.js";
....
Example for run in Cloud:
import { content01 } from "http://www.meine-app.com:8182/lib/env.js";
....
I am searching for something like this:
import { content01 } from ${baseURI}:8182/lib/env.js";
My Application must only run on Google-Chrome.
Is there a new feature in new ECMA-Standard?