-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
100 lines (82 loc) · 3.57 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<html lang="en">
<head>
<title>Nucleoid IDE</title>
<meta charset="utf-8" />
<meta name="robots" content="index,follow" />
<meta name="viewport" content="minimum-scale=1,initial-scale=1,width=device-width" />
<meta name="description"
content="Nucleoid is low-code framework for Node.js, lets you build your APIs with the help of AI and built-in datastore in declarative runtime engine." />
<meta name="keywords" content="low-code,Node.js,node,ai,datastore,framework" />
<meta property="og:url" content="https://nucleoid.com/" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Nucleoid IDE" />
<meta property="og:description"
content="Nucleoid low-code framework lets you build your APIs with the help of AI and built-in datastore." />
<meta property="og:image" content="https://cdn.nucleoid.com/media/og.png" />
<meta name="twitter:card" content="summary_large_image" />
<meta property="twitter:domain" content="nucleoid.com" />
<meta property="twitter:url" content="https://nucleoid.com/" />
<meta name="twitter:title" content="Nucleoid IDE" />
<meta name="twitter:description"
content="Nucleoid is low-code framework for Node.js, lets you build your APIs with the help of AI and built-in datastore in declarative runtime engine." />
<meta name="twitter:image" content="https://cdn.nucleoid.com/media/og.png" />
<link rel="icon" type="image/png" href="https://cdn.nucleoid.com/media/icon.png" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap" />
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons" />
<link rel="stylesheet" href="/loading.css" />
<link rel="manifest" href="/manifest.json" />
</head>
<body>
<div data-cy="nuc-progress-indicator" class="nuc-progress-indicator" id="nuc-progress-indicator">
<div class="nuc-progress-indicator-head">
<div class="nuc-progress-first-indicator"></div>
<div class="nuc-progress-second-indicator"></div>
</div>
<div class="nuc-logo-frame">Nucleoid</div>
</div>
<div id="root"></div>
<script type="module" src="/src/index.jsx"></script>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-L9H12K94J4"></script>
<script type="module">
import config from "./config.js";
const params = new URLSearchParams(window.location.search);
if (params.get("clear") === "true") {
localStorage.clear();
}
if (params.get("dev") || !config.base) {
localStorage.setItem("beta", params.get("dev"));
localStorage.setItem("debug", params.get("dev"));
}
if (params.get("beta")) {
localStorage.setItem("beta", params.get("beta"));
}
if (params.get("debug")) {
localStorage.setItem("debug", params.get("debug"));
}
if (window.location.hostname !== "nucleoid.com" || params.get("gtag") === "false") {
window["ga-disable-G-L9H12K94J4"] = true;
}
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-L9H12K94J4", {
send_page_view: false,
});
gtag("event", "page_view", {
page_title: "IDE",
page_location: "https://nucleoid.com/",
page_path: "/ide",
});
if ("serviceWorker" in navigator) {
window.addEventListener("load", function () {
navigator.serviceWorker.register(`${window.location.origin}${config.base}/service-worker.js?v=3`);
});
}
window.start = Date.now();
window.gtag = gtag;
</script>
</body>
</html>