5

I'm new to JavaSript, and I like JS Bin, but on desktop no thing is the same for development. Is there a way to work with JS Bin without access to the website?

4

1 回答 1

5

是的,可以将它安装在您自己的计算机上,这是开始试验服务器端 JavaScript 的好方法,因为 JS Bin 本身就是用 JavaScript 编写的。JS Bin的源代码在 GitHub 上可用,jsbin 模块在Node.js上可用。

首先你必须安装 Node.js。然后你必须使用命令安装jsbin 模块

npm install jsbin

jsbin命令现在应该可用。如果你运行它,你应该有一个功能齐全的 JS Bin 版本可用在http://localhost:3000/

于 2012-10-30T06:48:44.057 回答