Small node js application to read, write and remove profiles from a single data file.
Run the application from your termainal an follow the steps. Each profile is contains Name, Surname and age and is read from the sample people.txt file.
The data file can be easily converted into a .CSV file since is a comma separated file.
There is an initial people.txt as sample file - it can be found inside of the data folder. Feel free to change the name of the data file but remember to update the path instance in profiler.js
const pathFile = path.join(__dirname, "data/people.txt");
Profiler.js has been created following the Node.js documentation.
Examples below made with yarn. Feel free to use npm.
yarn install
yarn profiler