@farmfe/plugin-dsv
Version:
š£ A Farm plugin which converts `.csv` and `.tsv` files into JavaScript modules.
55 lines (39 loc) ⢠1.21 kB
Markdown
š£ A Farm plugin which converts `.csv` and `.tsv` files into JavaScript modules.
This plugin requires an [LTS](https://github.com/nodejs/Release) Node version (v18.0.0+) and Farm v1.0.0+.
```bash
npm i @farmfe/plugin-dsv
```
Create a `farm.config.js` [configuration file](https://www.farmfe.org/docs/config/configuring-farm) and import the plugin:
```js
import { defineConfig } from '@farmfe/core';
import dsv from '@farmfe/plugin-dsv';
export default defineConfig({
plugins: [
[
dsv()
]
],
});
```
Suppose that you have a CSV (or TSV!) file which contains some information on delicious fruits:
```csv
type,count
apples,7
pears,4
bananas,5
```
And suppose you'd like to import that CSV as an `Array` within some part of your code. After adding the plugin (as shown above), you may `import` (or `require`) the CSV file directly. The import will provide an `Array` of `Objects` representing rows from the CSV file:
```js
import fruit from './fruit.csv';
console.log(fruit);
// [
// { type: 'apples', count: '7' },
// { type: 'pears', count: '4' },
// { type: 'bananas', count: '5' }
// ]
```