Skip to content

Commit 7e12737

Browse files
author
Shaun
authored
Merge pull request #2 from Saif-Shines/master
New folder of codes for each lesson of play list!
2 parents fc9e649 + 51e8888 commit 7e12737

15 files changed

+140
-0
lines changed

Each lesson Codes

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

Practice/#1 code of the play list.js

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
console.log("Hello Saif, You are learning Node.js!");
2+
3+
setTimeout(function(){
4+
console.log("Three seconds \n have passed!");
5+
6+
},3000);
+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
//Generally the module name and the variable name both are same
2+
var fs = require('fs');
3+
4+
// fs.readFileSync
5+
// Sync' part allows the node to read the file synchronusly meaning all file is read first before going through other code.
6+
var sample = fs.readFileSync('sample.txt','utf8');
7+
// utf8 is encoding format| you can find clean explanation here at http://stackoverflow.com/a/15128103/5388823
8+
console.log(sample);
9+
10+
// this line of code creates an another file output.txt and writes the data in sample into the log.
11+
fs.writeFileSync('output.txt',sample);
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Here goes the content of your file.

Practice/#11 Asyc/app.js

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
var fs = require('fs');
2+
3+
var file = fs.readFile('input.txt','utf8',function(err,data){
4+
fs.writeFile('writeme.txt',data);
5+
console.log(data);
6+
});
7+
8+
console.log('This is an instruction outside the sync file system.');

Practice/#11 Asyc/input.txt

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
This is file to read Synchonusly.

Practice/#2 callfunction.js

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
function callFunction(fun){
2+
fun();
3+
}
4+
5+
var tata = function(){
6+
console.log('bye');
7+
}
8+
9+
callFunction(tata);

Practice/#3 dirname.js

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
// node can also determine the your directory by using '__dirname';
2+
3+
console.log(__dirname);
4+
console.log(__filename);

Practice/#4 event.js

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
var events = require('events');
2+
3+
var myEmmitter = new events.EventEmitter();
4+
5+
myEmmitter.on('anEvent',function(msg){
6+
console.log(msg);
7+
});
8+
9+
myEmmitter.emit('anEvent','The event is absolutely emmited');

Practice/#5 getmodule.js

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
// This is the module getting function. it gets its module from moduleexp.js
2+
3+
var stuff = require('./moduleexp.js');// | ./ | is used to search in present directory.
4+
5+
6+
// look here at the counter part, it is actually taking the arguments. and doing everything.
7+
// We need to intialise the 'counter variable first.'
8+
console.log(stuff.counter(['Hello','This is','Saif']));
9+
console.log(stuff.adder(5,6));
10+
console.log(stuff.bi);
11+
console.log(stuff.adder(stuff.bi,44));

Practice/#6 moduleexp.js

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
2+
// This file is completely a module for getmodule.js file.
3+
4+
5+
// a function expression is made here.
6+
var counter = function(arry){
7+
return 'The number of '+arry.length + '\n done!';
8+
};
9+
// Adding more modules
10+
var adder = function(a,b){
11+
return 'On adding the two number it gives'+(a+b);
12+
}
13+
14+
var pi = 3.1535;
15+
16+
// module.exports is the important part, it makes the counter available for other modules!
17+
module.exports.counter = counter ;
18+
module.exports.adder = adder;
19+
module.exports.bi = pi;

Practice/#7 num 3.js

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
2+
// General Method for writing a function!
3+
function write(){
4+
console.log('Woah! I just Invoked a function');
5+
}
6+
write();
7+
8+
// Writing a funcion expression
9+
10+
var sayBye = function(){
11+
console.log('I just called a funcion expression,!');
12+
}
13+
14+
sayBye();

Practice/#8 setInterval.js

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
var time = 0;
2+
var timer = setInterval(function(){
3+
console.log(time+ ' seconds have passed');
4+
time += 2;
5+
if(time > 8){
6+
clearInterval(timer);
7+
}
8+
},2000);

Practice/#9 util.js

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
// Adding the required Modules
2+
3+
var events = require('events');
4+
var util = require('util');
5+
// creating a function Person
6+
7+
var Person = function(name){
8+
// this allows, the function with any object created(james,saif,sampath) to utilise this function
9+
this.name = name;
10+
}
11+
12+
// From the module util, we are inheriting the from events.EventEmitter
13+
util.inherits(Person,events.EventEmitter);
14+
//randomly 3 objects storing in 3 variables
15+
var james = new Person('james');
16+
var saif = new Person('saif');
17+
var sampath = new Person('sampath');
18+
19+
var People = [james,saif,sampath];
20+
21+
People.forEach(function(Person){
22+
Person.on('speak',function(msg){
23+
console.log(Person.name + 'said this ' + msg );
24+
});
25+
});
26+
27+
james.emit('speak','This is james');
28+
saif.emit('speak','OH great nice to meet you Mer. ');
29+
sampath.emit('speak','Thats cool');

README.md

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# node-js-playlist
2+
CSS and asset files for the Net Ninja YouTube nodejs playlist
3+
4+
The final project code can be found in the public/assests folder of this repo
5+
6+
If you have been following the tutorial, code for each and every lesson is added in the Practice folder so you can directly download and check.
7+
All files have been tested.
8+
9+
If more files for .\Practice\ should be added. They will be added very soon.

0 commit comments

Comments
 (0)