Skip to content

Instantly share code, notes, and snippets.

@YarivGilad
Created February 28, 2024 16:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save YarivGilad/6786d0a9e91eda6cf41ee6ff4e8fb11d to your computer and use it in GitHub Desktop.
Save YarivGilad/6786d0a9e91eda6cf41ee6ff4e8fb11d to your computer and use it in GitHub Desktop.
node files writer
import fs from 'fs/promises';
import log from '@ajar/marker';
console.time('benchmark');
const DIR_PATH = './LEADS';
const users = [];
// 1 - read the directory --> [fileNames...]
fs.readdir(DIR_PATH)
.then((files_names)=> {
// 2 - loop over file names array
const pending = files_names.map((file_name)=>{
// 3 - read the text file
return fs.readFile(`${DIR_PATH}/${file_name}`)
.catch(log.error)
})
// 4 - optional concat all files content into a global variable
Promise.all(pending)
.then(content_array => {
const content = content_array.join('\r\n');
// 5 - split file content into lines
const lines = content.split('\r\n');
// 6 - loop over lines
for(let line of lines) {
// 7 - split each line on , into array
let [fb_id,full_name,email] = line.split(',');
// 7.5 - if this is a new fresh user
if(!users.some((user)=> user.fb_id === fb_id)){
// 8 - remove " charachters from full name
full_name = full_name.slice(1,-1);
// 9 - build a user object
const user = {fb_id ,full_name ,email};
// console.log(lines.length);
// 10 - push user object to global users array
users.push(user)
}
}
// 11 - write users array into a json file
return fs.writeFile('./users.json',JSON.stringify(users,null,2));
})
.then(()=>{
// 12 - print the number of user
log.info('number of users:',users.length);
// 13 - print the benchmark time
console.timeEnd('benchmark');
})
})
// (async ()=>{
// // 1 - read the directory --> [fileNames...]
// // 2 - loop over file names array
// // 3 - read the text file
// // 4 - optional concat all files content into a global variable
// // 5 - split file content into lines
// // 6 - loop over line
// // 7 - split each line on , into array
// // 7.5 - if this is a new fresh user
// // 8 - remove " charachters from full name
// // 9 - build a user object
// // 10 - push user object to global users array
// // 11 - write users array into a json file
// // 12 - print the number of user
// // 13 - print the benchmark time
// })().catch(log.error);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment