Git Product home page Git Product logo

Comments (8)

pvenkatakrishnan avatar pvenkatakrishnan commented on May 18, 2024

@jeffharrell if you have not gotten to this yet, i can take it.

from kraken-js.

jeffharrell avatar jeffharrell commented on May 18, 2024

I haven't yet. That would be great!

-- Jeff

On Dec 2, 2013, at 6:32 PM, "pvenkatakrishnan" <[email protected]mailto:[email protected]> wrote:

@jeffharrellhttps://github.com/jeffharrell if you have not gotten to this yet, i can take it.


Reply to this email directly or view it on GitHubhttps://github.com//issues/13#issuecomment-29678630.

from kraken-js.

pvenkatakrishnan avatar pvenkatakrishnan commented on May 18, 2024

@totherik Currently we pass the error back in the model, as is... Did we want to do something fancy for logging in the error handler ? or were you thinking improvements for what is passed in the model ? it will help to get more insight into what you were thinking.

from kraken-js.

totherik avatar totherik commented on May 18, 2024

we need to log the error handler, but I don't have a solution for that just yet. the confusion was that it was logging to the console. one solution would be for kraken to emit server error events and allow app to listen to them to deal with logging message/errors.

from kraken-js.

pvenkatakrishnan avatar pvenkatakrishnan commented on May 18, 2024

First pass:
https://gist.github.com/pvenkatakrishnan/3e03440d8262f9f5b12e

from kraken-js.

pvenkatakrishnan avatar pvenkatakrishnan commented on May 18, 2024

i just noticed something in the EventEmitter class within node. There is a default 'error' event handler within. SO in my solution above, iff the app decides not to handle errors, and kraken emits the 'error' event anyway, it will thrown by the EventEmitter class which is not desirable in our case. App should have the flexibility of ignoring errors if they dont want to look at it.
SO the default event name for errors should be something other than 'error' :)

  // If there is no 'error' event listener then throw.
  if (type === 'error' && !this._events.error) {
    er = arguments[1];
    if (this.domain) {
      if (!er)
        er = new Error('Uncaught, unspecified "error" event.');
      er.domainEmitter = this;
      er.domain = this.domain;
      er.domainThrown = false;
      this.domain.emit('error', er);
    } else if (er instanceof Error) {
      throw er; // Unhandled 'error' event
    } else {
      throw Error('Uncaught, unspecified "error" event.');
    }
    return false;
  }

from kraken-js.

pvenkatakrishnan avatar pvenkatakrishnan commented on May 18, 2024

The code above is from the node core, EventEmitter class

from kraken-js.

pvenkatakrishnan avatar pvenkatakrishnan commented on May 18, 2024

This will be fixed with Kraken-v1.0.0 closing this out.

from kraken-js.

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.