GithubHelp home page GithubHelp logo

Comments (5)

aacerox avatar aacerox commented on August 18, 2024

Hi

I'm currently working on a solution to your issue. I'll try to return a new "Request" object for each method invocation. That "Request" object will be passed to ConnectManager and will handle error events emitted by each request. So if all works as expected you'll have a errorHandler on returned request object you can use to catch only request specific errors.

Also I'll try to parametrize this solution in options passed to the client, so you can choose to use it or not. something like this

var options ={
 //other options here
  manageRequests:true
}

var client = new Client(options);


//just handle errors
client.get(.. params..).on('error', function(err){
//catch error here
console.error(err); });

//use request object returned by method

var request = client.get(... params ...);

request.on('error',function(err){
 console.error(err);
};

//I'll probably add some properties to request object not just error handler

console.log(request.time);// or any other "awesome" properties ;)

from node-rest-client.

mast avatar mast commented on August 18, 2024

Solution seems very good! I'm waiting for it.
Thank you in advance!

from node-rest-client.

TimNZ avatar TimNZ commented on August 18, 2024

I know this would break existing code, but really you should follow the standard function(err,...) approach for callbacks.

Perhaps just add an option 'errInCallback' and if true (default = false), then callback is (err, data, response)

I'm researching rest clients instead of rolling my own and so far yours looks great apart from the error handling.

Perhaps I'll fork and have a stab myself in the meantime.

from node-rest-client.

aacerox avatar aacerox commented on August 18, 2024

Hi

first of all sorry for the delay but I've been quite busy at work lately, but finally I've a fix for bug #5. Solution is like the one I explained in previous messages but with one main difference: there's no need to declare any property on client options, now each method request returns a request object with specific request information and error handler.

You have the details on readme.md but here you have an example

var req=client.get(.. params..);

console.log('request options', req.options);

req.on('error',function(err){
 console.log('request property on error object', err.request);
 console.log('request options', err.request.options);
});

TimNZ I've tried to follow node.js standards for handling error events , with the advantage of no breaking any existing code and maintain backward compatibility, hope you like the solution.

Thank you all.

from node-rest-client.

mast avatar mast commented on August 18, 2024

@aacerox Thank you for the fix! It's appreciated!

from node-rest-client.

Related Issues (20)

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.