在哪里可以找到 Node.js 所有内部对象的完整属性/函数列表?
我阅读了他们的 API,但是,没有任何关于 Date 对象或如何生成简单随机数(例如 Math.random() )的内容。这些内部对象与客户端 JavaScript 对象不同。那么我可以在哪里找到呢?谢谢
I read their API, however, there is nothing about Date object, or how to generate a simple random number (e.g. Math.random() ). Those internal objects are different from the client side javascript ones. so where can I find out ? Thank.s
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这些内部对象与 google chrome 中运行的对象相同。它们由 v8 引擎提供。
Those internal objects are the same as the objects that run in google chrome. They're provided by the v8 engine.
当前版本的 NodeJS (v0.4.6) 的文档可以在这里找到: http ://nodejs.org/docs/v0.4.6/api/all.html
总的来说,NodeJS 中的许多内部对象应该与您期望在客户端看到的相同。
从我的终端加载 REPL,我看到以下内容:
The documentation for the current release of NodeJS (v0.4.6) can be found here: http://nodejs.org/docs/v0.4.6/api/all.html
On the whole, many of the internal objects within NodeJS should be same as your expect to see on the client-side.
Loading up the REPL from my terminal, I see the following: