I have a text which looks like the following
JavaScript
x
3
1
{"age": "52", "id": 1, "name": "Hulk"}
2
{"age": "33", "id": 2, "name": "Iron Man"}
3
I want to read the file and put it into an array of objects.
This is what I have done so far
JavaScript
1
4
1
const fs = require("fs");
2
const customerFile = fs.readFileSync("./customers.txt", "utf-8");
3
const customerArr = customerFile.split("n");
4
As you can see I am splitting the file, which creates an array but I am stuck on how to convert the items in the array into objects. How can I do this?
Advertisement
Answer
The format you’re working with is called ndjson. You could try looking for a parser made specifically for it.
Or if you’re reading it line by line into array, you can then map it to objects using JSON.parse
.
JavaScript
1
2
1
customerArr.map(i => JSON.parse(i));
2