A nightharbor loader for local file
npm install nightharbor-file-loaderA nightharbor loader for local file.
``sh`
$ npm install --save nightharbor nightharbor-file-loader
#### load targets from json and csv
`js
import {CsvLoader, JsonLoader} from "nightharbor-file-loader";
export default {
...,
loaders: [
new CsvLoader(["/path/to/targets.csv"]),
new JsonLoader(["/path/to/targets.json"])
],
...
}
``