@socketsupply/socket
Version:
A Cross-Platform, Native Runtime for Desktop and Mobile Apps — Create apps using HTML, CSS, and JavaScript. Written from the ground up to be small and maintainable.
22 lines (21 loc) • 594 B
HTML
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta
http-equiv="Content-Security-Policy"
content="
connect-src http: https: ipc: socket:;
script-src https: blob: socket: 'unsafe-eval' 'unsafe-inline';
worker-src https: blob: socket: 'unsafe-eval' 'unsafe-inline';
img-src 'none';
child-src https: socket: blob:;
object-src 'none';
"
>
<title></title>
<script charset="utf-8" type="module" src="./init.js"></script>
</head>
<body>
</body>
</html>