Coder Social home page Coder Social logo

extending options from a prototype about node HOT 11 CLOSED

nodejs avatar nodejs commented on April 28, 2024
extending options from a prototype

from node.

Comments (11)

rvagg avatar rvagg commented on April 28, 2024

perhaps we can have a test case for this to find a more optimal path, perhaps one that avoids Object.keys() if that's the root problem

from node.

chrisdickinson avatar chrisdickinson commented on April 28, 2024

This is a somewhat contentious issue.

IMO, I agree with the current behavior -- Node/IO apis should only take the given object into account, and ignore its [[Proto]] chain. That said, the TC should probably make an authoritative decision about "how Node/IO deals with API parameters" -- ideally something that can be put into the docs.

from node.

rlidwka avatar rlidwka commented on April 28, 2024

I'd rather support proto chain, because sometimes it's very convenient to have. Imho, this proto getters case is a very strong argument to do so.

According to my benchmarks, Object.create() is 2 times faster than util._extend() on options object with no properties and the more properties there are, the worse util._extend() gets.

url.parse() output object contains 12 properties, and Object.create() outperforms util._extend on it 6 times (4.2M ops/sec vs 0.6M ops/sec).

So it's faster even if we're talking plain js objects. But urlparser tries to improve speed with lazy getters, and current util._extend() implementation practically forbids you to do this kind of performance optimizations.

This is the reason I'm usually using Object.create() whenever I'm trying to modify options object leaving original function arguments intact.

I suppose this is an old code, and v8 didn't have Object.create() at the time when it was written. That's why we never give much thought to this. But I think it's about time to discuss what the best practice here is.

from node.

chrisdickinson avatar chrisdickinson commented on April 28, 2024

I suppose this is an old code, and v8 didn't have Object.create() at the time when it was written. That's why we never give much thought to this. But I think it's about time to discuss what the best practice here is.

I do not think it would be safe to assume that the absence of its usage in Node's APIs for options objects is due to the lack of Object.create. Object.create (and polyfills for Object.create) have been around for a long time.

url.parse() output object contains 12 properties, and Object.create() outperforms util._extend on it 6 times (4.2M ops/sec vs 0.6M ops/sec).

While performance has always been a guiding concern of Node, there has also long been a desire to make the API more explicit where possible, even at the cost of CPU cycles. I can envision a situation where {host: 'some-host'} is linked to an object specifying hostname, and requests end up going to an unexpected location. Trying to debug that would be more than a little maddening, since even console.log'ing the object is not going to display the parent object's hostname property.

from node.

rlidwka avatar rlidwka commented on April 28, 2024

I can envision a situation where {host: 'some-host'} is linked to an object specifying hostname

I did shoot myself in a foot once, when I had an option object like opts={uri: 'foo'} and was setting opts.url='bar' after that (request library supports both). No prototypes involved.

The fact that you can specify the same thing in two different ways is an api issue, which has nothing to do with prototype chains imho.

Trying to debug that would be more than a little maddening, since even console.log'ing the object is not going to display

I suppose an addition to console.log which says "hey, this object has non-standard prototype (for example, instead of { host: 'blah' } displaying {* host: 'blah' } or < host: 'blah' > or { host: 'blah', <proto-chain-length>: 2 } would help this a bit.

from node.

davidmarkclements avatar davidmarkclements commented on April 28, 2024

If you outlaw the proto chain on options objects, it will cause breakage on legacy code.

I wonder if in the specified case, Object.create(Object.freeze(options || {})) might cause V8 to optimize the case (eg it can rely on static rather than dynamic lookups on the proto chain) - and if not it may be a case that v8 optimize in the future

from node.

domenic avatar domenic commented on April 28, 2024

I feel somewhat strongly that you should always follow the prototype chain, i.e. just use [[Get]]. This is the most natural pattern, i.e. var x = options.x.

Another way of thinking about this is that if you were to write such options-taking functions in ES6 you would likely do

function client({ agent, protocol, ... }) {
  /* use agent, protocol, etc. */
}

Probably http.client itself couldn't work this way because it has so many overloads and defaults, but it should still be useful semantic guidance.

from node.

rvagg avatar rvagg commented on April 28, 2024

From TC meeting, #144:

@bnoordhuis: continue in the issue tracker

@indutny and @piscisaureus also expressed opinions on this but there was no resolution, just an agreement that there shal be further bikeshedding. I'm going to remove the tc-agenda label for now but if this keeps on going on and doesn't get anywhere productive then the label could be put back for a future meeting.

from node.

jonathanong avatar jonathanong commented on April 28, 2024

feels good to know you guys discussed this at least. 🙌 io.js 🙌

from node.

dougwilson avatar dougwilson commented on April 28, 2024

/cc @moll

from node.

chrisdickinson avatar chrisdickinson commented on April 28, 2024

Closing this. There's no definitive resolution from the TC, but @domenic swayed me to the proto-side via the ES6 destructuring argument. If anyone notices any specific APIs that are not accepting inherited attributes, feel free to open a PR and cc me. I'd be happy to take a look at them, and am generally +1 on making those sorts of changes.

from node.

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.