-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (62 loc) · 2.77 KB
/
index.html
File metadata and controls
68 lines (62 loc) · 2.77 KB
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
<!doctype html>
<html lang="en">
<head>
<!-- Primary Meta -->
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>JS Visualized</title>
<meta
name="description"
content="Visualize JavaScript execution step-by-step: Call Stack, Memory (local, global, heap), Event Loop, Task Queue, Microtask Queue, and Promises. An interactive educational tool for understanding how JS really works."
/>
<meta name="author" content="Kleyson" />
<meta
name="keywords"
content="javascript, execution context, call stack, event loop, memory, heap, promises, async await, visualizer, educational"
/>
<!-- Open Graph (Facebook, LinkedIn, Discord, etc.) -->
<meta property="og:type" content="website" />
<meta property="og:title" content="JS Visualized" />
<meta
property="og:description"
content="See how JavaScript executes code step-by-step. Visualize the Call Stack, Memory allocation, Heap, Event Loop, and async queues in real time."
/>
<meta property="og:image" content="/og-image.png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="og:url" content="https://javascriptvisualized.com" />
<meta property="og:site_name" content="JS Visualized" />
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="JS Visualized" />
<meta
name="twitter:description"
content="See how JavaScript executes code step-by-step. Call Stack, Memory, Heap, Event Loop — all visualized interactively."
/>
<meta name="twitter:image" content="/og-image.png" />
<!-- Theme color (browser address bar on mobile) -->
<meta name="theme-color" content="#0a0a0f" />
<!-- Favicon -->
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<!-- PWA Manifest -->
<link rel="manifest" href="/manifest.json" />
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,400;0,500;0,600;1,400&display=swap"
rel="stylesheet"
/>
<link
href="https://cdn.jsdelivr.net/npm/geist@1.3.0/dist/fonts/geist-sans/style.css"
rel="stylesheet"
/>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>