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: README.md
+41Lines changed: 41 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,47 @@ Upto now I have uploadedbelow functionalities
6
6
2. Rest Api's for user sign-up, login, logout and user profile using node-js, expess, mongodb along with jwt token as an authentication agent
7
7
3. OTP verification here complete form is designed and when user filled and submit the form an otp will be sent to filled email of user using nodemailer module and smtp method
8
8
then user has to enter the received otp for further verification
9
+
---
10
+
## Requirements
11
+
12
+
For development, you will need Node.js and a node global package, Yarn, installed in your environement and many other packages also which are stated further
13
+
14
+
### Node
15
+
-#### Node installation on Windows
16
+
17
+
Just go on [official Node.js website](https://nodejs.org/) and download the installer.
18
+
Also, be sure to have `git` available in your PATH, `npm` might need it (You can find git [here](https://git-scm.com/)).
19
+
20
+
-#### Node installation on Ubuntu
21
+
22
+
You can install nodejs and npm easily with apt install, just run the following commands.
23
+
24
+
$ sudo apt install nodejs
25
+
$ sudo apt install npm
26
+
27
+
-#### Other Operating Systems
28
+
You can find more information about the installation on the [official Node.js website](https://nodejs.org/) and the [official NPM website](https://npmjs.org/).
29
+
30
+
If the installation was successful, you should be able to run the following command.
31
+
32
+
$ node --version
33
+
v8.11.3
34
+
35
+
$ npm --version
36
+
6.1.0
37
+
38
+
If you need to update `npm`, you can make it using `npm`! Cool right? After running the following command, just open again the command line and be happy.
39
+
40
+
$ npm install npm -g
41
+
42
+
###
43
+
### Yarn installation
44
+
After installing node, this project will need yarn too, so just run the following command.
0 commit comments