在 Node.js 中查找内置对象和函数

发布于 2024-11-03 21:53:39 字数 147 浏览 0 评论 0原文

我试图弄清楚 Node 中默认情况下可用的所有内容,更具体地说,V8 为表带来了哪些不属于标准 javascript 规范的内容(例如 JSON 对象)。节点站点上的文档对于其绑定来说很好,但是在谷歌搜索了一下之后,我没有找到太多关于 V8 的额外内容。有人知道一两个好的资源吗?

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?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

眼波传意 2024-11-10 21:53:39

在浏览器中开发时,有许多精彩的内置 JavaScript 函数我们无法使用,因为某些浏览器没有实现它们。因此,大多数开发人员从不使用它们。然而,在 Node 中,我们可以假设每个人都有相同的 JavaScript 实现,因此可以使用这些精彩的函数,而不是在我们自己的库中一遍又一遍地实现它们。

以下是一些有趣的 api 位的列表,这些位在 Web 设置中使用不被认为是安全的,但内置于 Node 的 V8 引擎中。

V8 中实现的 ECMA 5 Mozilla 功能

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文