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 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, visit the help center for guidance.
Closed 11 years ago.
I'm building a stress testing framework for node.js services using node.js.
Do you know relevant projects which I can use / look at?
node.js projects that you've used and worked good? (latency, throughput etc..)
Any best practices on that matter?
Thanks!
Related
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 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, visit the help center for guidance.
Closed 9 years ago.
I’ve heard the statement that Python would be too slow to be of any use in browsers.
I reckon Javascript is only superior in this aspect because of companies like Google who need it fast (and made it fast) because they need it to survive, but I could be wrong.
Are there any differences in how Python and JS are designed that have an impact on how they (would) perform in browsers?
There is a project named Brython designed to replace JavaScript as the scripting language for the web.
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 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, visit the help center for guidance.
Closed 10 years ago.
I am a beginner in Javascript and would like to know procedures and starting codes to connect client side and server side using JS and websockets.
Try socket.io: http://socket.io/#how-to-use
Easier is if you have nodejs on server side
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 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, visit the help center for guidance.
Closed 10 years ago.
I plan to create a chat on the site for users, and was wondering if there is already open source javascript library that I can use.
You might want to have a look at node.js / jquery. Here's a tutorial on a chat (which supports web socket).
If you are using Dojo Toolkit there's something called Cometd to implement a chat room too.
Or you could use this (but no websocket).
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 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, visit the help center for guidance.
Closed 9 years ago.
What is the recommended way of unit testing javascript and jQuery?
What frameworks?
Does the framework
integrate with build tools? (CI,
maven and such)
Please share your experiences in this field.
I'm using this: jQuery QUnit
jQuery unit testing library
Samples for QUnit
Manual to start
Maven plugin
Also, can check this solution (found in my bookmarks): js-test-driver
You might have heard of JsUnit. That's what I've used in the past.
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 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, visit the help center for guidance.
Closed 11 years ago.
I have an interview with Google on Javascript and form verification.
I have done a lot of preparation in terms of algorithms and general data structure. But how to prepare for an interview by a javascript team?
Please share some example and resources.
Thanks
Check out Douglas Crockford's resources on JavaScript, especially his Google tech talks called JavaScript: The Good Parts.