Nodejs Lire le fichier à tableau

const fs = require('fs');
const data = fs.readFileSync('file.txt', 'utf8').split('\n'); //use .split() to chose a character to define where a new piece of data starts
Innovixx