Code Monkey home page Code Monkey logo

Comments (4)

elhoyos avatar elhoyos commented on June 26, 2024 4

Here's an example reproducing the situation:

cr({url: 'https://www.google.com', ttl: 10000}, (err, response, body) => {console.log(body instanceof Buffer)}) // false
cr({url: 'https://www.google.com', ttl: 10000}, (err, response, body) => {console.log(body instanceof Buffer)}) // true

Response type should be consistent here. Thanks @maxceem.

Any patch is welcome or I will fix it when I have a window of time for it.

from cached-request.

elhoyos avatar elhoyos commented on June 26, 2024

Hi @maxceem. What cached-request version are you using to get two different response representations?

I just tried the following with 1.1.2 and got a string representation printed on every request:

const request = require('request')
const cr = require('cached-request')(request)
const crDirectory = '/tmp/cache'

cr({url: 'https://www.google.com'}, (err, response, body) => {console.log(body instanceof String)})

from cached-request.

maxceem avatar maxceem commented on June 26, 2024

Unfortunately I don't remember what was the version, as because of this issue I decided not to use this module that time. But I'm sure it was version which was current in npm repository on Jan 30 2017.
I've just tried to reproduce the issue with the synthetic example using current version but cannot.

from cached-request.

xamgore avatar xamgore commented on June 26, 2024

At the moment I do something like this:

cr(options, (error, response) => {
  if (response.body instanceof Buffer)
    response.body = response.body.toString()
  
})

Seems it can be moved directly into the cached request's code, just before passing data to the error-response callback.

from cached-request.

Related Issues (19)

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.