Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/johanbrook/screener

Parse CSV data to JSON and output to HTML template.
https://github.com/johanbrook/screener

Last synced: about 2 months ago
JSON representation

Parse CSV data to JSON and output to HTML template.

Awesome Lists containing this project

README

        

# Screener

A tool for reading in CSV data and applying it as JSON to a Handlebars template. Makes it easier to screen.

# Usage

From the command line:

```bash
cd screener
./bin/screen input [template]
```

`input` is a path to a CSV file. `template` defaults to `template.html`. Outputs a HTML file in the same directory.

From a script:

```javascript
var screener = require('../index')

screener('somefile.csv', './template.html')
```

From the `gulpfile.js`:

```bash
gulp template
```

# License

MIT.