-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (45 loc) · 1.6 KB
/
index.html
File metadata and controls
54 lines (45 loc) · 1.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PlayOS Kernel ⚡️</title>
<script src="build/kernel.js"></script>
</head>
<body>
<button onclick="handleLoginClick()">
Log in
</button>
<script>
async function handleLoginClick() {
PlayOS.auth.showLoginPrompt((auth) => {
console.log('[] auth -> ', auth);
});
}
async function run() {
PlayOS.config.setConfig({
manifestUri: 'https://airhorner.com/manifest.json',
authenticatorUri: 'http://localhost:3000/#/auth',
});
// if (!PlayOS.auth.isUserLoggedIn()) {
// PlayOS.auth.redirectToLogin();
// }
const kernel = await PlayOS.bootKernel('SEED', new PlayOS.providers.BrowserProvider);
await kernel.provider.storeFile('/tralalalala', 'test');
const response = await fetch('http://localhost:4000/untouched.wasm');
const bin = await response.arrayBuffer();
const process = await kernel.createProcess(new Uint8Array(bin), ['playos', '0x00000002', 'Hello', 'World'], {});
let msgTotal = '';
process.on('message', (msg) => {
msgTotal += msg;
console.log(msg);
});
process.on('exit', (code) => {
console.log('Exited process with code', code);
})
process.spawn();
}
run();
</script>
</body>
</html>