Greetings from JetBrains!
The newest version of our JavaScript IDE — WebStorm 3.0 — is out!

Latest trends like CoffeeScript, JSLint/JSHint validation and the new star of server-side JavaScript development – Node.JS – are at your fingertips:
- Support for Node.JS allows you to use all the IDE power for editing and debugging server-side JavaScript.
- CoffeeScript navigation, completions, refactoring, error-checking and more.
- Integration with JSLint/JSHint enables new inspections to verify code quality.
- JavaScript unit testing with JsTestDriver.
- Smart Duplicated Code Detector for HTML, CSS and JavaScript.
- Significant improvements to FTP/SFTP Sync.
- TFS support and revision graph for GIT.
- Streamlined UI across all operating systems.
Read more about what’s new, download WebStorm 3.0 and do not miss another present — attractive WebStorm pricing before February 1, 2012!
Oh, and we also want to cordially thank all early adopters for your invaluable feedback!
Develop with pleasure!
JetBrains Team
This blog is permanently closed.
For up-to-date information please follow to corresponding WebStorm blog or PhpStorm blog.
@Everybody – please note, the build is the same as 3.0 RC.
Why is Node’s http.createServer() an “Unresolved function or method”?
Hi. I’m getting the same behavior. How did you resolve it?
(I’ve done all from http://blog.jetbrains.com/webide/2011/11/webstorm-your-node-app/ )
Matt Have you checked Node getting started instructions in http://blog.jetbrains.com/webide/2011/11/webstorm-your-node-app/ ?
Most frontend devs use JSHint rather than JSLint these days. Otherwise looks good!
In fact JSHint is also supported. I corrected the post.
Great job! I started with version 1.0 and I us WebStorm everyday. It’s the perfect tool.
Thank you, Christian.
I recently purchased PHPStorm 3.0. Are there any differences between WebStorm and PHPStorm in regards to Javascript besides PHP support?
Hi, Brian.
JS Unit testing support is not bundled in PhpStorm. But you can install it as plugin, see: http://blog.jetbrains.com/webide/2011/10/javascript-unit-testing-support/#comments
Node.JS is also not bundled.
Except mentioned above there is no difference in regards to JavaScript, HTML and CSS.
Awesome!!!
I guess the same applies to PyCharm 2.0 ?
Hey, it all looks great but days earlier, I just bought a personal license for 2.1 – do I get the upgrade?
Rich
Hi, Rich. Each license includes 1 year of free upgrades to any version (even major one). So you can upgrade to 3.0 now and you will also get all upgrades that we will publish during 1 year after the day of your purchase.
I followed the instructions per http://blog.jetbrains.com/webide/2011/11/webstorm-your-node-app/ , and when I tell the app to run, it runs properly. But I still have the same issues as others mentioned above un where the part:
var http = require("http");
http.createServer(function(request, response) {
response.writeHead(200, {"Content-Type": "text/plain"});
response.write("Hello World");
response.end();
}).listen(8888);
is that .createserver( still comes up as L Unresolved function or method createserver(), as well as the writeHead/write/end methods. Is there any way to get those resolved properly?
Having the same issue