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
Copy file name to clipboardExpand all lines: docs/DEV.md
+60-19
Original file line number
Diff line number
Diff line change
@@ -9,36 +9,77 @@ _[**Node.js**](https://nodejs.org/en) v16_ and _**npm**_ installed on your devel
9
9
Although, this is sufficient to run, build, and test the project as a whole, you might need some
10
10
extra tools for other development tasks.
11
11
12
+
_**Note:**_ For Windows users, ensure PowerShell’s execution policy allows running scripts by
13
+
setting it to `RemoteSigned` if necessary: `Set-ExecutionPolicy RemoteSigned -Scope CurrentUser`. If
14
+
you run into issues, please refer to [this page](https://stackoverflow.com/questions/4037939/powershell-says-execution-of-scripts-is-disabled-on-this-system).
15
+
12
16
You'll need _**tsc**_ (_TypeScript Compiler_) to manually compile `.ts` files. You'll need
13
17
_**ts-node**_ (_Node.js executable for TypeScript_) to manually execute `.ts` scripts directly. Finally,
14
18
you'll need an _HTTP_ server like _**http-server**_ (_a HTTP server program_), if you want to serve
15
19
files manually.
16
20
17
-
Once _**npm**_ is installed, to install the above, run
21
+
### Installation Steps
18
22
19
-
```bash
20
-
npm i -g http-server
21
-
npm i -g typescript
22
-
npm i -g ts-node
23
-
```
23
+
#### Install Prequisites
24
24
25
-
_**Note:**_ Users on _Linux_ and _MacOS_ are required to add a `sudo` before these commands.
0 commit comments