Skip to content

Commit 253661e

Browse files
🎉 Initial Commit
0 parents  commit 253661e

File tree

2 files changed

+46
-0
lines changed

2 files changed

+46
-0
lines changed

README.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# Nodejs Fundamentals Workshop
2+
3+
> Ahmed Abdulrahman
4+
5+
- [Resources](#resources)
6+
- [System Requirements](#system-requirements) | متطلبات النظام
7+
- [How To Use](#how-to-use)
8+
9+
## Resources
10+
11+
You can view the slides in this [folder]('./slides')
12+
13+
## System Requirements
14+
15+
- In order to follow a long with workshop, make sure you install lastest version of Nodejs either from source [then go here](https://nodejs.org/en/) or [node version manager (NVM)](https://github.com/creationix/nvm#installation) its a simple bash script to manage multiple active node.js versions that allows you install different version of Nodejs and switch between theme locally like this:
16+
17+
```
18+
nvm install node # Installs the lastest version of node which is an alias for the latest version
19+
nvm alias default node
20+
```
21+
22+
## How to use
23+
24+
Download the project
25+
26+
```
27+
$ git clone [email protected]:code2gether/nodejs-fundamentals-workshop.git
28+
```
29+
30+
Then you need to install dependencies inside `package.json` by simply running:
31+
32+
```
33+
$ npm install
34+
```

package.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"name": "node-js-fundementals-workshop",
3+
"version": "1.0.0",
4+
"description": "> Ahmed Abdulrahman",
5+
"main": "index.js",
6+
"scripts": {
7+
"test": "echo \"Error: no test specified\" && exit 1"
8+
},
9+
"keywords": [],
10+
"author": "Ahmed Abdulrahman <[email protected]>",
11+
"license": "MIT"
12+
}

0 commit comments

Comments
 (0)