-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnotes.txt
335 lines (212 loc) · 10.3 KB
/
notes.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
Contents:
1.What is nodejs?
2.Npm packages
- In build
- Third party
- Custom"
3.Synchronous vs ASynchronous
4.Path Methods
*************************************************************************************************************************
1.What is nodejs?
===>Node.js is a open source library.
===>Node.js is a javascript runtime environment that allows us to run javascript code outside of the browser.
Javascript ஐ browser க்கு outside ல் run செய்ய தேவைப்படும் library ஆகும்.
Example :
VS code ல் console.log('hello world!'); run செய்ய Node.js பயன்படுகிறது.
browser ல் run செய்யக்கூடிய Javascript ஐ Node.js ஐ பயன்படுத்தி o/p ஐ பெறுகிறோம்.
===>Node.js is built on top of the V8 engine (the same engine that powers google chrome).
===>Node.js is a
*** single threaded
*** non-blocking
*** asynchronous
*** concurrent runtime environment
===>node.js ஆனது Install ஆகி உள்ளதா என்பதை காண
node -v
===>npm packages ஆனது Install ஆகி உள்ளதா என்பதை காண
npm -v
===>VS code ஐ open செய்ய
code .
===>Example 1 : A simple web server using node.js
Create a index.js file
// Import the module http
const http = require('http');
// Define the server hostname and port number
const hostname = '127.0.0.1'; // local host IP Address
const port = 3000; // user defined
// create a server
const server = http.createServer( (req, res) => {
res.statusCode = 200;
res.setHeader('Content-Type', 'text/plain');
res.end('Hello World\n');
})
// Make the server to listen to the different port number
server.listen(port,hostname, () => {
console.log(`Server Running at http://${hostname}:${port}`);
});
To verify:
Terminal ல் node index.js என்று கொடுத்தால் "Server Running at http://127.0.0.1:3000" என்று வரவேண்டும்.
அதேப்போல் அந்த link ஐ Search செய்யும் போது நாம் கொடுத்த content ஆன "Hello World" என்று வரவேண்டும்.
************************************************************
===>ஒரு BackEnd Project ஐ initiate செய்ய அல்லது
ஒரு npm Project ஐ initiate செய்ய
npm init என்று கொடுக்க வேண்டும்.
some details கொடுத்து OK செய்யவும்.
அப்பொழுது package.json என்ற file ஒன்று உருவாகும்.அதில் நாம் கொடுத்த details எல்லாம் show ஆகும்.
இப்பொழுது Terminal ல் node index.js (அல்லது) npm start இவ்விரண்டில் எது கொடுத்தாலும் நமக்கு run ஆகும்.
ஏனென்றால் package.json ல் நமக்கு initiate ஆகியுள்ளது.
************************************************************
===>Example 2 : A simple web server using node.js
Create a server.js file
// Import the module http
const http = require('http');
const notes = [
{
id : 1,
content : 'JavaScript is a Functionality',
important : true
},
{
id : 2,
content : 'CSS is a Styling',
important : false
},
{
id : 3,
content : 'React is a both (1) and (2)',
important : true
},
]
// Define the server hostname and port number
const hostname = '127.0.0.1'; // local host IP Address
const port = 4000; // user defined
// create a server
const server = http.createServer( (req, res) => {
res.statusCode = 200;
res.setHeader('Content-Type', 'application/json');
res.end(JSON.stringify(notes));
})
// Make the server to listen to the different port number
server.listen(port,hostname, () => {
console.log(`Server Running at http://${hostname}:${port}`);
});
To verify:
Terminal ல் node server.js என்று கொடுத்தால் "Server Running at http://127.0.0.1:4000" என்று வரவேண்டும்.
அதேப்போல் அந்த link ஐ Search செய்யும் போது notes ல் கொடுத்த content வரவேண்டும்.
*************************************************************************************************************************
2.Npm packages
- built-in
- Third party
- Custom"
===>built-in :
Examples :
1.http => To create a server
2.fs => To Read/write files
3.path => To Work with file paths
4.os => To Get info about your operating system => To execute commands in the terminal
5.events => To Work with events
6.util => To Work with utilities
===>Third party :
Examples :
1.express => To create a server
2.nodemon => To Restart the server on file change
3.mongoose => To Work with MongoDB
4.body-parser => To parse the body of the request
5.cors => To Enable cross-origin resource sharing
6.bcrypt => To Hash passwords
7.jsonwebtoken => To Work with JSON web tokens
8.axios => To Make http requests
9.dotenv => To Work with environment variables
===>Custom :
Examples :
1.utils => To Work with utilities
2.config => To Work with configuration
3.middleware => To Work with middlewares
4.models => To Work with models
5.controllers => To Work with controllers
6.routes => To Work with routes
7.services => To Work with services
8.tests => To Work with tests
9.utils => To Work with utilities
10.validators => To Work with validators
11.views => To Work with views
12.public => To Work with public files
13.db => To Work with database
14.migrations => To Work with database migrations
15.seeds => To Work with database seeds
16.scripts => To Work with scripts
17.logs => To Work with logs
18.docs => To Work with documentation
19.etc
*************************************************************************************************************************
3.Synchronous vs ASynchronous
===>Single thread =>Only one task is to execute.
ஒரே ஒரு task ஐ மட்டும் execute செய்வது ஆகும்.
Example : JavaScript
Multi thread =>Executing multi task.
Multi task ஐ execute செய்வது ஆகும்.
Example : Java,C,C++
===>Synchronous =>It will execute all the code line by line in the order it is written.
one by one ஆக (அல்லது) line ஆக execute செய்வது ஆகும்.
Example : Java
Asynchronous =>It will do the task without waiting for a task to complete it is execution.
எந்த condition க்கும் wait செய்யாமல் execute செய்வது ஆகும்.
Example : JavaScript & setTimeout
===>JavaScript is a "Single thread Language" & "Asynchronous"
Java is a "Multi thread Language" & "Synchronous"
************************************************************
===>Example : Synchronous using node.js
Create a test.txt file
Hello
Create a sync.js file
const fs = require('fs');
const data = fs.readFileSync('./test.txt', 'utf-8');
console.log(data);
sayHello = () => {
console.log('hello');
}
sayHello();
o/p:
முதலில் data ஐ காட்டும்.
பிறகுதான் consoleல் உள்ள "Hello" என்ற வார்த்தையை காட்டும்.
************************************************************
===>Example : Asynchronous using node.js
Create a test.txt file
Hello
Create a async.js file
const fs = require('fs');
fs.readFile('./test.txt', 'utf-8', (err, data) => {
if (err) throw err;
console.log(data);
});
sayHello = () => {
console.log('hello');
}
sayHello(); // runs before the console.log(data)
o/p:
முதலில் consoleல் உள்ள "Hello" என்ற வார்த்தையை காட்டும்.
பிறகுதான் data ஐ காட்டும்.
*************************************************************************************************************************
4.Path Methods
===>Example : Path node.js
Create a path.js file
const path = require('path');
const test = '/Users/karan/Documents/Desktop/karan/be-b51/test.txt';
===>get the directory name of the file
total path யும் கண்டறிய
console.log(path.dirname(test)); // /Users/karan/Documents/Desktop/karan/be-b51
===>get the filename with extension
file name ஐ கண்டறிய
console.log(path.basename(test)); // test.txt
===>get the extension alone
filename ன் extension ஐ கண்டறிய
console.log(path.extname(test)); // .txt
===>get the filename without the extension
filename ன் extension இல்லாமல் வர
console.log(path.basename(test, path.extname(test))); // test
===>To join path
path ஐ join செய்ய
console.log(path.join('/Users/karan/Documents/', 'Desktop/karan', 'be-b51/test.txt'));
// /Users/karan/Documents/Desktop/karan/be-b51/test.txt
===>appends teh filename with extension to the current home directory path
console.log(path.resolve('test.txt'));
*************************************************************************************************************************