Skip to content

Commit f54a4a4

Browse files
committed
Update Setting Up Node.js (Javascript)/script.md
1 parent f91729c commit f54a4a4

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

Setting Up Node.js (Javascript)/script.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,34 +11,34 @@ _____________
1111
# Guide
1212
1. Download [nodejs](https://nodejs.org) (current)
1313
- Setup nodejs
14-
- [img](https://raw.githubusercontent.com/jevajs/Jeva/master/Setting%20Up%20Node.js%20(Javascript)/1.png)
14+
- ![img](https://raw.githubusercontent.com/jevajs/Jeva/master/Setting%20Up%20Node.js%20(Javascript)/1.png)
1515
- If on linux; to install:
1616
```bash
1717
sudo apt-get install -y node.js
1818
```
1919
2. Restart Computer *if necessary*
2020
3. Make a new folder (anywhere)
21-
- [img](https://raw.githubusercontent.com/jevajs/Jeva/master/Setting%20Up%20Node.js%20(Javascript)/3.png)
21+
- ![img](https://raw.githubusercontent.com/jevajs/Jeva/master/Setting%20Up%20Node.js%20(Javascript)/3.png)
2222
4. Open your shell *In your new folder preferably*
2323
- Command Prompt for windows
2424
- Terminal for Linux/Mac
25-
- [img](https://raw.githubusercontent.com/jevajs/Jeva/master/Setting%20Up%20Node.js%20(Javascript)/4.png)
25+
- ![img](https://raw.githubusercontent.com/jevajs/Jeva/master/Setting%20Up%20Node.js%20(Javascript)/4.png)
2626
5. `cd` into the new directory (folder) using:
2727
```bash
2828
cd folder
2929
OR
3030
cd directory/folder
3131
```
3232
Where folder is your new folder's name and the directory representing the directory to your folder
33-
-[img](https://raw.githubusercontent.com/jevajs/Jeva/master/Setting%20Up%20Node.js%20(Javascript)/5.png)
33+
- ![img](https://raw.githubusercontent.com/jevajs/Jeva/master/Setting%20Up%20Node.js%20(Javascript)/5.png)
3434
6. Now, type in
3535
```bash
3636
npm init
3737
```
38-
- [img](https://raw.githubusercontent.com/jevajs/Jeva/master/Setting%20Up%20Node.js%20(Javascript)/6.png)
38+
- ![img](https://raw.githubusercontent.com/jevajs/Jeva/master/Setting%20Up%20Node.js%20(Javascript)/6.png)
3939
and follow the prompts, then hit enter for *yes*
4040
7. Create a Javascript file where your `package.json` is located (`index.js` by default)
41-
- [img](https://raw.githubusercontent.com/jevajs/Jeva/master/Setting%20Up%20Node.js%20(Javascript)/7.png)
41+
- ![img](https://raw.githubusercontent.com/jevajs/Jeva/master/Setting%20Up%20Node.js%20(Javascript)/7.png)
4242
8. Open the Javascript file (using the code editor) and now we can do a simple program **in the index.js**. ex:
4343
```js
4444
// index.js
@@ -48,7 +48,7 @@ _____________
4848
```bash
4949
node index.js
5050
```
51-
[img](https://raw.githubusercontent.com/jevajs/Jeva/master/Setting%20Up%20Node.js%20(Javascript)/9.png)
51+
![img](https://raw.githubusercontent.com/jevajs/Jeva/master/Setting%20Up%20Node.js%20(Javascript)/9.png)
5252

5353
## Great Job! You successfully installed node and made your first program in node.js.
5454
Make sure to subscribe to Jeva and join our discord!

0 commit comments

Comments
 (0)