এনপিএম ইনস্টল সিএসভি
নমুনা সিএসভি ফাইল পার্স করার জন্য আপনার একটি সিএসভি ফাইলের দরকার পড়ছে, তাই হয় আপনার কাছে ইতিমধ্যে একটি রয়েছে বা আপনি নীচের পাঠ্যটি অনুলিপি করে একটি নতুন ফাইলে পেস্ট করতে পারেন এবং সেই ফাইলটিকে "mycsv.csv" কল করতে পারেন
ABC, 123, Fudge
532, CWE, ICECREAM
8023, POOP, DOGS
441, CHEESE, CARMEL
221, ABC, HOUSE
1
ABC, 123, Fudge
2
532, CWE, ICECREAM
3
8023, POOP, DOGS
4
441, CHEESE, CARMEL
5
221, ABC, HOUSE
নমুনা কোড পড়া এবং সিএসভি ফাইল পার্সিং
একটি নতুন ফাইল তৈরি করুন এবং এর মধ্যে নিম্নলিখিত কোডটি .োকান। পর্দার আড়ালে কী চলছে তা পড়তে ভুলবেন না।
var csv = require('csv');
// loads the csv module referenced above.
var obj = csv();
// gets the csv module to access the required functionality
function MyCSV(Fone, Ftwo, Fthree) {
this.FieldOne = Fone;
this.FieldTwo = Ftwo;
this.FieldThree = Fthree;
};
// Define the MyCSV object with parameterized constructor, this will be used for storing the data read from the csv into an array of MyCSV. You will need to define each field as shown above.
var MyData = [];
// MyData array will contain the data from the CSV file and it will be sent to the clients request over HTTP.
obj.from.path('../THEPATHINYOURPROJECT/TOTHE/csv_FILE_YOU_WANT_TO_LOAD.csv').to.array(function (data) {
for (var index = 0; index < data.length; index++) {
MyData.push(new MyCSV(data[index][0], data[index][1], data[index][2]));
}
console.log(MyData);
});
//Reads the CSV file from the path you specify, and the data is stored in the array we specified using callback function. This function iterates through an array and each line from the CSV file will be pushed as a record to another array called MyData , and logs the data into the console to ensure it worked.
var http = require('http');
//Load the http module.
var server = http.createServer(function (req, resp) {
resp.writeHead(200, { 'content-type': 'application/json' });
resp.end(JSON.stringify(MyData));
});
// Create a webserver with a request listener callback. This will write the response header with the content type as json, and end the response by sending the MyData array in JSON format.
server.listen(8080);
// Tells the webserver to listen on port 8080(obviously this may be whatever port you want.)
1
var csv = require('csv');
2
// loads the csv module referenced above.
3
4
var obj = csv();
5
// gets the csv module to access the required functionality
6
7
function MyCSV(Fone, Ftwo, Fthree) {
8
this.FieldOne = Fone;
9
this.FieldTwo = Ftwo;
10
this.FieldThree = Fthree;
11
};
12
// Define the MyCSV object with parameterized constructor, this will be used for storing the data read from the csv into an array of MyCSV. You will need to define each field as shown above.
13
14
var MyData = [];
15
// MyData array will contain the data from the CSV file and it will be sent to the clients request over HTTP.
16
17
obj.from.path('../THEPATHINYOURPROJECT/TOTHE/csv_FILE_YOU_WANT_TO_LOAD.csv').to.array(function (data) {
18
for (var index = 0; index < data.length; index++) {
19
MyData.push(new MyCSV(data[index][0], data[index][1], data[index][2]));
20
}
21
console.log(MyData);
22
});
23
//Reads the CSV file from the path you specify, and the data is stored in the array we specified using callback function. This function iterates through an array and each line from the CSV file will be pushed as a record to another array called MyData , and logs the data into the console to ensure it worked.
24
25
var http = require('http');
26
//Load the http module.
27
28
var server = http.createServer(function (req, resp) {
29
resp.writeHead(200, { 'content-type': 'application/json' });
30
resp.end(JSON.stringify(MyData));
31
});
32
// Create a webserver with a request listener callback. This will write the response header with the content type as json, and end the response by sending the MyData array in JSON format.
33
34
server.listen(8080);
35
// Tells the webserver to listen on port 8080(obviously this may be whatever port you want.)
Things to be aware of in your app.js code
In lines 7 through 11, we define the function called 'MyCSV' and the field names.
If your CSV file has multiple columns make sure you define this correctly to match your file.
On line 17 we define the location of the CSV file of which we are loading. Make sure you use the correct path here.
আপনার অ্যাপ্লিকেশন শুরু করুন এবং কার্যকারিতা যাচাই করুন একটি কনসোল খুলুন এবং নিম্নলিখিত কমান্ডটি টাইপ করুন:
নোড অ্যাপ্লিকেশন 1 নোড অ্যাপ্লিকেশন আপনার কনসোলে নিম্নলিখিত আউটপুটটি দেখতে হবে:
[ MYCSV { Fieldone: 'ABC', Fieldtwo: '123', Fieldthree: 'Fudge' },
MYCSV { Fieldone: '532', Fieldtwo: 'CWE', Fieldthree: 'ICECREAM' },
MYCSV { Fieldone: '8023', Fieldtwo: 'POOP', Fieldthree: 'DOGS' },
MYCSV { Fieldone: '441', Fieldtwo: 'CHEESE', Fieldthree: 'CARMEL' },
MYCSV { Fieldone: '221', Fieldtwo: 'ABC', Fieldthree: 'HOUSE' }, ]
1 [এমওয়াইসিএসভি {ফিল্ডোন: 'এবিসি', ফিল্ডটও: '123', ফিল্ডথ্রি: 'ফড'}, 2 এমওয়াইসিএসভি {ফিল্ডোন: '532', ফিল্ডটো: 'সিডব্লিউই', ফিল্ডথ্রি: 'আইসিক্রিম' AM, 3 এমওয়াইসিএসভি {ফিল্ডোন: '8023', ফিল্ডটো: 'পিওওপি', ফিল্ডথ্রি: 'ডিওজিএস', 4 এমওয়াইসিএসভি {ফিল্ডোন: '441', ফিল্ডটো: 'CHEESE', ফিল্ডথ্রি: 'কার্মেল'}, 5 এমআইসিএসভি {ফিল্ডোন: '221', ফিল্ডটো: 'এবিসি', ফিল্ডথ্রি: 'হাউস'},] এখন আপনার উচিত একটি ওয়েব-ব্রাউজার এবং আপনার সার্ভারে নেভিগেট করা। আপনি এটি JSON ফর্ম্যাটে ডেটা আউটপুট দেখতে হবে।
উপসংহারটি নোড.জেএস এবং এটির সিএসভি মডিউল ব্যবহার করে আমরা সার্ভারে সঞ্চিত ডেটা দ্রুত এবং সহজেই পড়তে এবং ব্যবহার করতে পারি এবং অনুরোধের ভিত্তিতে ক্লায়েন্টের কাছে এটি উপলব্ধ করতে পারি request