Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to download JS Bin to my computer to code [closed]

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?

like image 350
Tu Do dinh Avatar asked Oct 30 '12 06:10

Tu Do dinh


People also ask

How do I run jsBin?

See this jsBin http://jsbin.com/kumoyogegu/1/edit go to File > Download > and run it from desktop.

What is bin JavaScript?

JS Bin is a collaborative JavaScript debugging tool. It allows you to edit and test JavaScript and HTML (reloading the URL also maintains the state of your code). Once you're happy you can save, and send the URL to a peer for review or help. They can then make further changes saving anew if required.


1 Answers

Yes, it is possible to install it on your own computer and it is a great way to start experimenting with server-side JavaScript because JS Bin itself is itself written in JavaScript. The source code of JS Bin is available on GitHub and the jsbin module is available for Node.js.

First you have to install Node.js. Then you will have to install the jsbin module with a command:

npm install jsbin

And the jsbin command should now be available. If you run it you should have a fully functional version of JS Bin available at http://localhost:3000/

like image 93
rsp Avatar answered Sep 25 '22 01:09

rsp