SeaTurtle
SeaTurtle

Reputation: 523

PyCharm JavaScript Debugging

Is JavaScript debugging powered by Firefox and Chrome available in PyCharm 1.5?

If so, can it run effectively alongside the Python / Django debugger?

If not, is there a way to use PyCharm with WebStorm in some sort of integrated fashion?

Upvotes: 7

Views: 1722

Answers (2)

Korich
Korich

Reputation: 1284

One option is to use netbeans fully featured IDE IntelliJ IDEA, it has plugins for both web and python editing sadly it costs a little more.

You can grab the python plugin from here, the javascript debugger is built in.

Upvotes: 0

Skomski
Skomski

Reputation: 4870

The JavaScript debugger plugin is currently not bundled with PyCharm. Feel free to watch/vote http://youtrack.jetbrains.net/issue/PY-3021

There's no way to integrate PyCharm and WebStorm.

Source: Dmitry Jemerov -- http://devnet.jetbrains.net/thread/305054

Upvotes: 3

Related Questions