Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there an editor that works like jsfiddle on my local machine, without having to be connected to the internet.

share|improve this question
1  
What are your requirements? For example AJAX requests, etc, or simple markup (HTML/CSS, etc)? – Chris Nov 22 '11 at 5:56
"local machine"? jsfiddle's js is all local too. Local to browser. If you are looking for a text editor like jsfiddle then I think your best options are these: stackoverflow.com/questions/925219/… – zengr Nov 22 '11 at 6:42
@Chris, html css and jquery – Mike Nov 22 '11 at 7:26
I would like a jsfiddle type editor/viewer for testing out my company's internal javascript/css libraries. – Queso Oct 26 '12 at 14:43

closed as not constructive by SomeKittens, Benjamin Gruenbaum, Ocramius, Musa, EdChum Apr 6 at 20:09

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

6 Answers

Check out Remy Sharp's JSBin. Installation instructions here.

share|improve this answer
1  
installing instructions are too complicated for me actually – Mike Nov 22 '11 at 11:57
Yeah, 2-years later and it's pretty hard to install... wish it were easier and PHP development was actively developed on still... – Devin Walker Mar 15 at 20:38
Installation is looking quite simple now: npm install jsbin – Geoist Apr 2 at 4:48

You can create a plain text file, say test.html, then write your JavaScript and open the file in a browser. If you want to reference any libraries, just download them to the same folder and reference them.

<script type="text/javascript" src="jquery.min.js"></script>
<script>
    alert("Hello World!");
    $("#foo").hide();
</script>

<div id="foo">
    Hello World
</div>

Or you can try something like vimfiddler.

share|improve this answer

This tutorial shows how you can easily build your own using an iframe:

http://net.tutsplus.com/tutorials/html-css-techniques/how-to-inject-custom-html-and-css-into-an-iframe/

share|improve this answer
Thanks but that didn't answer my question. – Mike Dec 11 '11 at 7:45
Sorry about that. The solution allows you to enter html, css and JavaScript, and see the result, like jsfiddle. It just doesn't have all the bells and rings. – Christophe Dec 11 '11 at 19:35
I wanted something a kind of executable, that i can download on my local machine – Mike Dec 11 '11 at 21:10
well, a Web page like this can run on your local machine. – Christophe Dec 11 '11 at 23:04
1  
I meant without Internet access. As long as you have a browser... – Christophe Dec 11 '11 at 23:15

have you tried writing code right in to firebug console ? to write/learn javascript it's best tool i know.

edit: for html/css there's a lot of tools that might help (actually i sits on windows but there's no special app that might be useful), on mac there's coda or espresso which is typical (and not typical) wysywig tool and have live preview mode, as far as i know coda offers a cheap support of javascript.

for javascript firebug in firefox / developer tool in safari, chrome.

share|improve this answer

on windows: Microsoft Web Expression 4.0 is available for HTML/CSS.
there are extensions like code cola for chrome. Chrome's inspector tool is awesome too. you can also use Firebug in FireFox.

For jQuery, there are extensions for Google Chrome. with or without documentation. like jquery shell. jquery browser. For CSS there are extensions like code cola.
though you will need web-server for extensions in chrome to work. like IIS. create a virtual directory in IIS for that.

share|improve this answer

The only combination you need is this..

share|improve this answer
I am looking for something like an editor, which will have four components seperated like how jsfiddle behaves.Is there anything that combines all these 3 components that you mentioned into a single piece like jsfiddle – Mike Nov 22 '11 at 9:45
Don't take this as being smart but save (Cntl+S) in FlashDevelop, swap to Firefox (alt-tab), refresh (f5) and you're done! Rinse and repeat. Your desktop is basically tieing the 2 applications in together (firebug runs inside firefox) - plus you have the advantage of inspecting the DOM through Firebug (which jsfiddle doesn't have) – Chris Nov 22 '11 at 9:50

Not the answer you're looking for? Browse other questions tagged or ask your own question.