Giter Club home page Giter Club logo

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",

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

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

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.