![]() | |
![]() |
| | Thread Tools | Display Modes |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
I'd like to get some insight into the views the regulars round here have of Javascript integrated development environments. It seems to me that it is not really possible to ignore Javascript entirely, there are just too many things that customers (sometimes) expect. So, how do you do yours? Can anyone recommend an IDE that is compatible with multiple browsers? |
#3
| |||
| |||
|
|
On Tue, 3 Aug 2004 15:18:40 +0000 (UTC), John Robin Devany firstname (AT) lastname (DOT) com> wrote: I'd like to get some insight into the views the regulars round here have of Javascript integrated development environments. It seems to me that it is not really possible to ignore Javascript entirely, there are just too many things that customers (sometimes) expect. So, how do you do yours? Can anyone recommend an IDE that is compatible with multiple browsers? IDE stands for "Integrated Development Environment", usually referring to the fact that the editor, compiler and maybe a debugger and GUI editor are all *integrated* into the same software (or "environment"). |
|
I'm not really sure how you'd "integrate" a JavaScript development environment since (for the purposes of web-based client-side JavaScript) the compiler is in the web browser and not a standalone tool anyway. There are debuggers available which can integrate into browsers (particularly IE) and your "GUI" will be written in HTML. |
|
Most people just write JavaScript in a text editor. In most cases what's being written isn't amazingly complex, and the version of JavaScript supported by most browsers doesn't sport any fancy features that normally warrant a fancy editor. Personally, on the few occasions where I've had reason to write JavaScript (which, fortunately, is becoming less and less necessary these days unless you are writing a fancy web application) I just did it in the same text editor I write my HTML and other code in, with the addition of a new syntax highlighting configuration for JavaScript. |
#4
| |||
| |||
|
|
Syntax colouring would be nice, which editor do you use? |
#5
| |||
| |||
|
|
On Mon, 9 Aug 2004 09:36:13 +0000 (UTC), John Robin Devany wrote: Syntax colouring would be nice, which editor do you use? I use TextPad, with an appropriate .syn file to highlight the syntax of the Javascript. |
#6
| |||
| |||
|
|
I do have a fancy web application. Though I try to keep it clean, little bits of Javascript creep in, and, as its a development platform for larger apps, other (internal) developers are asking questions about how we could maintain a standard library of Javascript routines. Syntax colouring would be nice, which editor do you use? |
#7
| |||
| |||
|
|
Andrew Thompson wrote: On Mon, 9 Aug 2004 09:36:13 +0000 (UTC), John Robin Devany wrote: Syntax colouring would be nice, which editor do you use? I use TextPad, with an appropriate .syn file to highlight the syntax of the Javascript. Textpad only does syntax highlighting based on file type, i.e., it only highlights javascript if it is in a separate file. I am still looking for a lightweight editor that is able to properly parse an HTML file, and highlight the HTML as HTML, javascript as javascript, css as css, etc. The InterSystems Caché database's IDE does this, but it is unsuited as a general-purpose editor. Gertjan. As far as syntax highlighting goes, VIM is the best editor I've used. |
#8
| |||
| |||
|
|
Andrew Thompson wrote: On Mon, 9 Aug 2004 09:36:13 +0000 (UTC), John Robin Devany wrote: Syntax colouring would be nice, which editor do you use? I use TextPad, with an appropriate .syn file to highlight the syntax of the Javascript. Textpad only does syntax highlighting based on file type, i.e., it only highlights javascript if it is in a separate file. I am still looking for a lightweight editor that is able to properly parse an HTML file, and highlight the HTML as HTML, javascript as javascript, css as css, etc. The InterSystems Caché database's IDE does this, but it is unsuited as a general-purpose editor. |
#9
| |||
| |||
|
|
..as far as syntax highlighting goes, VIM is the best editor I've used. |
![]() |
| Thread Tools | |
| Display Modes | |
| |