1

I'm trying to figure out what all is available by default in Node and more specifically, what V8 brings to the table (things like the JSON object) that aren't part of the standard javascript spec. The docs on the node site are fine for its bindings but after googling around for a bit, I'm not finding much on what extras V8 has. Anyone know of a good resource or two?

1 Answer 1

2

When developing in the browser there are many wonderful built in JavaScript functions that we can’t use because certain browsers don’t implement them. As a result, most developers never use them. In Node, however we can assume that everyone has the same JavaScript implementation and as such can use these wonderful functions and not implement them over and over in our own libraries.

The following is a list of some interesting api bits that aren’t considered safe to use in a web setting but are built in to node’s V8 engine.

ECMA 5 Mozilla Features Implemented in V8

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.