Giter VIP home page Giter VIP logo

csv-express's Introduction

csv-express

A CSV response module for Express. This is an up-to-date fork of express-csv that merges outstanding pull requests.

Changes from express-csv

  • Adds support for adding a header row to the CSV (#16)
  • Better escaping of numbers so that applications such as Excel properly recognize data types
  • Actively maintained for use Express 3 and 4
  • Up to date dependencies and tests
  • Support for different encodings ( thanks alexcrack! )

Installation

npm install csv-express

API

Methods

res.csv(data [, csvHeaders] [, responseHeaders] [, statusCode])

  • data (required): an array of arrays or objects
  • csvHeaders (optional): a Boolean for returning headers on the output CSV file. Default is false.
  • responseHeaders (optional): object containing custom HTTP response headers
  • statusCode (optional): a custom HTTP response status code. Default is 200.

Settings

#separator

The delimiter to use, default is ','.

#preventCast

Prevent Excels type casting, default is false.

#ignoreNullOrUndefined

Treat null and undefined values as empty strings in the output, default is true.

Usage

Example:

var express = require('express')
var csv = require('csv-express')
var app = express()

// Basic
app.get('/', function(req, res) {
  res.csv([
    ["a", "b", "c"]
  , ["d", "e", "f"]
  ])
})

// Add headers
app.get('/headers', function(req, res) {
  res.csv([
    {"a": 1, "b": 2, "c": 3},
    {"a": 4, "b": 5, "c": 6}
  ], true)
})

// Add response headers and status code (will throw a 500 error code)
app.get('/all-params', function(req, res) {
  res.csv([
    {"a": 1, "b": 2, "c": 3},
    {"a": 4, "b": 5, "c": 6}
  ], true, {
    "Access-Control-Allow-Origin": "*"
  }, 500)
})

app.listen(3000)

You can also pass an array of objects and optionally return a header row. Useful when working with the results from database queries using node-mysql or node-postgres.

  res.csv([
      {"name": "Sam", "age": 1},
      {"name": "Mary": "age": 2}
  ], true)

  => name, age
     Sam, 1
     Mary, 2

License

The original license is as follows:

The MIT License

Copyright (c) 2012 Seiya Konno <[email protected]>

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
'Software'), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

All modifications from the original are CC0.

Support

Development supported by NSF CAREER EAR-1150082 and NSF ICER-1440312

csv-express's People

Contributors

alexcrack avatar gangachris avatar jczaplew avatar mblackshaw avatar nulltask avatar thrackle avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

csv-express's Issues

"Can't set headers after they are sent"

My code looks like this:

    twit.get('search/tweets', req.query, function(err, response) {
        const out = response.statuses.map(s => ({
            user_id: s.user.id,
            user_name: s.user.name,
            user_screen_name: s.user.screen_name,
            text: s.text,
        }));
        res.csv(out, true);
    });

It fails on the res.csv line like this:

Error: Can't set headers after they are sent.
    at validateHeader (_http_outgoing.js:491:11)
    at ServerResponse.setHeader (_http_outgoing.js:498:3)
    at ServerResponse.header (code/node_modules/express/lib/response.js:771:10)
    at ServerResponse.res.csv (code/node_modules/csv-express/lib/csv-express.js:68:8)
    at code/routes/index.js:78:13
    at Request._callback (code/node_modules/twitter/lib/twitter.js:227:5)
    at Request.self.callback (code/node_modules/twitter/node_modules/request/request.js:185:22)
    at emitTwo (events.js:126:13)
    at Request.emit (events.js:214:7)
    at Request.<anonymous> (code/node_modules/twitter/node_modules/request/request.js:1161:10)
    "csv-express": "^1.2.2",
    "express": "^4.15.2",

Typo error in the documentation code

There is a typo error in the documentation code:

 res.csv([
      {"name": "Sam", "age": 1},
      {"name": "Mary": "age": 2}
  ], true)

"Mary": "age" - > "Mary", "age"

Use delimiter

Can any one of please help me how to set delimiter as | in csv-express module

Documentation

I switched to your fork because it seems to be maintained while the original is not. So thank you for that !

I think you could improve the user experience though by improving the documentation.

Two things I noticed :

  • res.csv([data] [, csvHeaders] [, responseHeaders] [, statusCode]) the data parameter should not be between brackets as it is required
  • you didn't provide a full example with all parameters (I noticed because I was wondering if responseHeaders should be an object or an array)

Cheers

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.