gadidae 0.1.3 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +35 -0
- package/dist/index.js +469 -39
- package/package.json +1 -1
package/README.md
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# Cod
|
|
2
|
+
|
|
3
|
+
Cod creates CodeHS-container computers.
|
|
4
|
+
|
|
5
|
+
## How to use Cod
|
|
6
|
+
|
|
7
|
+
1. Go to https://codehs.com/explore/sandbox
|
|
8
|
+
2. Replace the code with
|
|
9
|
+
```js
|
|
10
|
+
await import("https://esm.sh/gadidae")
|
|
11
|
+
```
|
|
12
|
+
3. Press Run
|
|
13
|
+
4. Press Cod
|
|
14
|
+
|
|
15
|
+
## Apps
|
|
16
|
+
|
|
17
|
+
- Firefox is automatically installed, set as default, and launched.
|
|
18
|
+
- Prism Launcher is automatically installed. Use a valid Microsoft account, and once you're playing, ctrl+click to enable relative mouse.
|
|
19
|
+
- opencode is automatically installed. Launch with the UI or with `opencode web` to avoid problems with Cod's terminal.
|
|
20
|
+
- A terminal is always available. Use the Tasks tab to view logs for various Cod processes. Make a new tab to use bash. Long lines may behave unexpectedly.
|
|
21
|
+
|
|
22
|
+
> [!WARNING]
|
|
23
|
+
> While we install the latest versions of:
|
|
24
|
+
> - `firefox`
|
|
25
|
+
> - `prismlauncher`
|
|
26
|
+
> - `opencode`
|
|
27
|
+
>
|
|
28
|
+
> These tools you may want to use inside the terminal use CodeHS's default versions:
|
|
29
|
+
> - `node` (12.22.9)
|
|
30
|
+
> - `npm` (8.5.1)
|
|
31
|
+
> - `python` (3.8.20)
|
|
32
|
+
> - `~/.pyvenv311/bin/python` (3.11.14)
|
|
33
|
+
> - `pip` (21.3.1)
|
|
34
|
+
> - `dotnet` (6.0.428)
|
|
35
|
+
> - `java` (1.8.0_472)
|