Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I'd like a small javascript scratchpad in which I can write and test (non-DOM related) functions.
I'm not happy using the Firebug console to do this.
Does such a thing exist as a standalone app?
There's jQueryBuddy, currently in beta.
It does support DOM manipulation, but you don't have to use that if you don't need it. And like LinqPad it has a very similar Dump() method for viewing objects.
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
JSON.parse(fileName_or_stringOfJSON)
I know they return an object, but how is the string converted into object. In NODEJs, where is the source code?
I think JSON.parse() is not a utility solely usable in Nodejs. It is already standardized since Javascript v1.7 if I am not mistaken. If you are interested in "how" question, read this.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I start learn TypeScript. I'm looking for extensions in VisualStudio or Re#, which will show live JavaScript based on TypeScript written by me
Could you recommend something like that? I use VS 2015 with Re#.
That's not a tool but you should definitely check https://www.typescriptlang.org/play/ as it does what you need. It's a home website for typescript language.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I can generate random string just like here.
But are there some tools to generate same string according to user language? So you can just pass language code and get a string?
This problem is called "internationalization" or i18n.
If you google "javascript internationalization" you'll find several projects that could help, including:
http://i18next.com/
http://formatjs.io/
https://slexaxton.github.io/Jed/
I've used Jed before and it worked well for me.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
Are there any alternatives to nullege (which is for Python) for your_favorite_programming_language ? I am mainly interested in JavaScript examples to make my code more idiomatic.
Koders
GitHub may also be very useful (I am not sure if Koders searches in it)
Also searching on google may provide you with good results
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I would like to understand the low level details of how XMLHttpRequest works in Javascript, however I have not had any luck finding the implementation code within either the Rhino or V8 code. I'm not familiar with the code in either projects, so I may not be looking in the right spots.
Is there an available open-source implementation anywhere?
If I'm not mistaken, in the Mozilla source code this is handled by nsXMLHttpRequest.cpp.