array-of-objects

Given a folder with JSON-formatted files this module returns an array containing those objects

Usage no npm install needed!

<script type="module">
  import arrayOfObjects from 'https://cdn.skypack.dev/array-of-objects';
</script>

README

Usage

The module takes a path as it's opnly argument. It reads the files in that folder and puts the content of the files in an Array

Example

array-of-objects('./my-data') will return an array like:

[{"a":"foo", "2":2, "gamma":"bar"}, {"chapter1": "The first one"}]

if the folder my-data contains two files with the corrosponding contents.