Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

connect-csv

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

connect-csv

Connect middleware for accepting text/csv data type

  • 0.1.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

connect-csv

Connect Middleware for parsing incoming text/csv data type.

csv = require('connect-csv');
var app = express();
app.use(csv()); // Prepends header row only for 'text/csv; header=absent'

app.use(csv({ header: 'guess' })); // Prepend header row heuristically
app.use(csv({ header: ['x','y','z'] })); // Always prepend this row
app.use(csv({ header: 'present' })); // Never prepend header row

This middleware parses the Content-Type header, and sets request.body to an array-of-array structure for text/csv data, as defined in RFC 4180.

By default, if the MIME type is text/csv; header=absent, we prepend request.body with an array of ["_0", "_1", ...] which serves as a default header row.

If header middleware parameter is guess, and if any field in the first row begin with numbers, then it's treated the same way as header=absent.

CC0 1.0 Universal

To the extent possible under law, 唐鳳 has waived all copyright and related or neighboring rights to connect-csv.

This work is published from Taiwan.

http://creativecommons.org/publicdomain/zero/1.0

Keywords

FAQs

Package last updated on 31 Aug 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc