You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
_**Note:**_ For Windows users, ensure PowerShell’s execution policy allows running scripts by
27
+
setting it to `RemoteSigned` if necessary: `Set-ExecutionPolicy RemoteSigned -Scope CurrentUser`.
28
+
If you run into issues, please refer to [this page](https://stackoverflow.com/questions/4037939/powershell-says-execution-of-scripts-is-disabled-on-this-system).
32
29
33
-
Output should look like
30
+
2.**Install Required Global Packages**
34
31
35
-
```bash
36
-
v16.14.0
37
-
8.3.1
38
-
Version 4.6.2
39
-
v10.6.0
40
-
v14.1.0
41
-
```
32
+
Run the following commands:
33
+
34
+
```bash
35
+
npm i -g http-server
36
+
npm i -g typescript
37
+
npm i -g ts-node
38
+
```
39
+
40
+
_**Note:**_ Users on _Linux_ and _MacOS_ are required to add a `sudo` before these commands.
41
+
42
+
```bash
43
+
sudo npm i -g typescript ts-node http-server
44
+
```
45
+
46
+
These global packages are _not required by the app_ but serve as extra utilities.
47
+
48
+
**Alternative for Unix-like systems:**
49
+
50
+
If Python is installed, users can serve built files with:
51
+
52
+
```bash
53
+
python3 -m http.server --bind 127.0.0.1 8080
54
+
```
55
+
56
+
3. **Verify Installation**
57
+
58
+
Ensure all tools are installed correctly by running:
0 commit comments