File tree Expand file tree Collapse file tree 2 files changed +41
-23
lines changed Expand file tree Collapse file tree 2 files changed +41
-23
lines changed Original file line number Diff line number Diff line change 4
4
push :
5
5
branches :
6
6
- main
7
- - docs
8
7
9
8
permissions :
10
9
contents : write
Original file line number Diff line number Diff line change @@ -18,43 +18,62 @@ Napse is still in early stage. You can only run it manually for now.
18
18
19
19
To install nvm, download and install the nvm script from the project's GitHub page:
20
20
21
- ``` shell
22
- curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.38.0/install.sh | bash
23
- ```
24
21
25
- After installing nvm, close your terminal and open a new one. Verify the installation by checking the version of nvm:
22
+ === "Linux"
23
+
24
+ ```shell
25
+ curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.38.0/install.sh | bash
26
+ nvm --version
27
+ ```
28
+
29
+ === "MacOS"
30
+
31
+ Please follow this [tutorial](https://dev.to/csituma/install-nvm-on-mac-windows-and-linux-1aj9)
32
+
33
+ === "Windows"
34
+
35
+ Please follow this [tutorial](https://dev.to/csituma/install-nvm-on-mac-windows-and-linux-1aj9)
26
36
27
- ``` shell
28
- nvm --version
29
- ```
30
37
31
38
### Install Node.js
32
39
33
40
Now, you can install Node.js. The following command installs Node.js latest version :
34
41
35
- ``` shell
36
- nvm install --lts
37
- ```
42
+ === "Linux"
43
+
44
+ ```shell
45
+ nvm install --lts
46
+ ```
47
+
48
+ === "MacOS"
49
+
50
+ Please follow this [tutorial](https://radixweb.com/blog/installing-npm-and-nodejs-on-windows-and-mac)
51
+
52
+ === "Windows"
53
+
54
+ Please follow this [tutorial](https://radixweb.com/blog/installing-npm-and-nodejs-on-windows-and-mac)
38
55
39
56
### Install yarn
40
57
41
58
Yarn is a Node package manager. Install it by running these commands
42
59
43
- ``` shell
44
- curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
45
- ```
46
60
47
- ``` shell
48
- echo " deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
49
- ```
61
+ === "Linux"
50
62
51
- ``` shell
52
- sudo apt update
53
- ```
63
+ ```shell
64
+ curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
65
+ echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
66
+ sudo apt update
67
+ sudo apt install yarn
68
+ ```
54
69
55
- ``` shell
56
- sudo apt install yarn
57
- ```
70
+ === "MacOS"
71
+
72
+ Please follow this [tutorial](https://www.hostinger.com/tutorials/how-to-install-yarn)
73
+
74
+ === "Windows"
75
+
76
+ Please follow this [tutorial](https://www.hostinger.com/tutorials/how-to-install-yarn)
58
77
59
78
---
60
79
## Run the desktop application
You can’t perform that action at this time.
0 commit comments