-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
66 lines (63 loc) · 2.76 KB
/
Copy pathindex.html
File metadata and controls
66 lines (63 loc) · 2.76 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" href="/node-logo.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Node.js Runtime</title>
<meta
name="description"
content="Run Node.js in your browser."
/>
<meta name="theme-color" content="#ffffff" />
<link rel="canonical" href="https://developer.puter.com/labs/node/" />
<meta property="og:type" content="website" />
<meta property="og:site_name" content="Puter Labs" />
<meta property="og:title" content="Node.js Runtime" />
<meta
property="og:description"
content="Run Node.js in your browser."
/>
<meta property="og:url" content="https://developer.puter.com/labs/node/" />
<meta property="og:locale" content="en_US" />
<meta property="og:image" content="https://developer.puter.com/labs/node/og.png" />
<meta property="og:image:secure_url" content="https://developer.puter.com/labs/node/og.png" />
<meta property="og:image:type" content="image/png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta
property="og:image:alt"
content="The Node.js Runtime workspace: App.tsx open in the editor, a shell with Vite ready on port 5173, and a live preview of the running app beside it."
/>
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@HeyPuter" />
<meta name="twitter:creator" content="@HeyPuter" />
<meta name="twitter:title" content="Node.js Runtime" />
<meta
name="twitter:description"
content="Run Node.js in your browser."
/>
<meta name="twitter:image" content="https://developer.puter.com/labs/node/og.png" />
<meta
name="twitter:image:alt"
content="The Node.js Runtime workspace: App.tsx open in the editor, a shell with Vite ready on port 5173, and a live preview of the running app beside it."
/>
<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=Roboto:wght@100;300;400;500;700;900&display=swap"
rel="stylesheet"
/>
<!-- Privacy-friendly analytics by Plausible -->
<script async src="https://plausible.io/js/pa-k6ilPWiCwLaAeuy_X0NVc.js"></script>
<script>
window.plausible=window.plausible||function(){(plausible.q=plausible.q||[]).push(arguments)},plausible.init=plausible.init||function(i){plausible.o=i||{}};
plausible.init()
</script>
</head>
<body>
<div id="app"></div>
<script src="https://js.puter.com/v2/"></script>
<script type="module" src="/src/main.ts"></script>
</body>
</html>