交互式 JavaScript 宝石?
我找到了一些在线交互式 Javascript 编辑器,但我想知道是否有本地等效的 gem,可以让我像 Mac 中的 IRB 和 Rails 控制台一样测试 Javascript?
I've found some online interactive Javascript editors, but I wonder if there is a local equivalent as a gem that lets me test Javascript just like IRB and Rails console in Mac?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
试试这些:
Try these:
Mozilla 提供 Rhino shell。请注意,它基于基于 Java 构建的 JavaScript 开源版本。
编辑:
由于您使用的是 Mac,因此可以使用 jsc,应将其安装在:
/System/Library/Frameworks/JavaScriptCore.framework/Versions/A/Resources/jsc
。在此页面。
Mozilla provides Rhino shell. Please note that it is based on an open source version of JavaScript built on Java.
Edit:
Since you are on a mac, you can use jsc which should be installed in:
/System/Library/Frameworks/JavaScriptCore.framework/Versions/A/Resources/jsc
.Found this little gem of info on this page.
由于 Marcel Korpel 已将其作为评论提及,并且可能会错过(我首先错过了),因此将其输入此处。
在 Chrome/Firefox/Safari 中启动控制台(右键单击浏览器并说“检查元素”并查找“控制台”选项卡)并开始输入您想要评估的命令。
如果您想键入多行而不评估每一行(例如定义对象/函数),请按 SHIFT+Enter 转到下一行(在 Chrome 中工作,尚未在其他版本中检查)
Since Marcel Korpel has mentioned it as comment and might miss (I missed it first), entering it in here.
Fire up the console in Chrome/Firefox/Safari (Right click on the browser and say Inspect Element and look for Console tab) and start entering the commands that you wanna evaluate.
If you want to type multiple lines without each line being evaluated (like defining object/function), press SHIFT+Enter to go to next line (works in Chrome, have't checked in others)