The frontend app makes use of the Crypto: randomUUID() method from the Web Crypto API. That method is only available in secure contexts. Hence the application only works when using HTTPS or when running on localhost (which is also a secure context). In non-secure contexts, the web app fails with Uncaught TypeError: crypto.randomUUID is not a function and the browser does not render any content.
The tool looks very promising! Great work!
The frontend app makes use of the Crypto: randomUUID() method from the Web Crypto API. That method is only available in secure contexts. Hence the application only works when using HTTPS or when running on localhost (which is also a secure context). In non-secure contexts, the web app fails with
Uncaught TypeError: crypto.randomUUID is not a functionand the browser does not render any content.The tool looks very promising! Great work!