If developing a traditional web application that is to be accessed via the browser, the recommended approach is to deploy it to a web server and access it via http://
(or https://
) rather than file://
. Web server software is available free of charge for all operating systems.
For Windows, IIS is recommended.
On Mac OS and Linux, Apache is a popular option but any web server will do.
As a side note, a web server is not necessary when the ArcGIS API for JavaScript is used in embedded scenarios, for example Microsoft PowerBI, Windows Store app, or Adobe Creative Cloud.
JavaScript developers have a wide-range of development environment options. Some individuals prefer text editors that have many keyboard shortcuts for traversing through words, sentences, paragraphs, etc. Others are partial to more robust Integrated Development Environments (IDE) that often have many more tools related to code refactoring, syntax checking, code completion, code formatting, and source code management. Whichever editor you use, we recommend validating your code throughout your development process.
The JavaScript team maintains a collection of useful resources for developers using the ArcGIS API for JavaScript. The two most popular options for inspecting your source code are JSLint and JSHint. Both are code quality tools that scan your code to identify potential issues such as missing semicolons, trailing commas, implied globals, unreachable code and more. Using a linter can save you debugging time by quickly identifying issues that are easily overlooked. One resource that may improve your code quality is the JavaScript team's JSHint configuration file. For more information, check out the Esri resources on JSHint.
Many of the newer IDEs (JetBrains IDEs*, Sublime Text, and Visual Studio) support syntax checking with JSHint and code hinting when providing a TypeScript definition file. The JavaScript team maintains a TypeScript definition for the ArcGIS API for JavaScript. For more information, see the Esri TypeScript resource on GitHub. Amongst the JavaScript team, the most popular editors are Aptana/Eclipse, Brackets, Sublime Text 2, and WebStorm. Below is a list of some of the more popular options (some free, some require paid licenses).
Aptana is a free IDE and provides many features that simplify the coding process such as code assist, syntax highlighting and more.
After downloading and installing Aptana you can customize it to specify options like custom formatters, tab width and variable highlighting. You can also enable JSLint, a code quality tool.
Tabs are not defined the same way across various editors which can lead to formatting issues when your code is viewed in another enviroment. To avoid this you can replace tabs with spaces, two spaces is a good default option.
Variable highlighting allows you to select a variable in Aptana to view all the occurrences of a selected variable in the file. Enable variable highlighting by checking the Highlight current line option in the General > Editors > Text Editors section of the Preferences dialog.
Aptana provides several options for formatting your code (CSS, HTML, JavaScript). You can customize the formatting to suit your needs using Aptana's Preferences dialog. Once the formatters are applied click CTRL+Shift+f to format the current file.
Install JSLint:
Aptana is a free IDE that simplifies the process of building Web applications. Aptana provides many features that simplify the coding process such as code assist, color-coding, integration of popular JavaScript libraries and much more.
Download and install Aptana Studio.
After downloading and installing Aptana you can customize it to specify options like custom formatters, tab width and variable highlighting. You can also enable JSLint, a code quality tool.
Tabs are not defined the same way across various editors which can lead to formatting issues when your code is viewed in another enviroment. To avoid this you can replace tabs with spaces, two spaces is a good default option.
Variable highlighting allows you to select a variable in Aptana to view all the occurrences of selected variable in the file. Enable variable highlighting by checking the Highlight current line option in the General > Editors > Text Editors section of the Preferences dialog.
Aptana provides several options for formatting your code (CSS, HTML, JavaScript). You can customize the formatting to suit your needs using Aptana's Preferences dialog. Once the formatters are applied click CTRL+Shift+f to format the current file.
Install JSLint:
Microsoft Visual Web Developer Express, is a free development enviroment for building Web applications.
Instructions for installing the JSLint add-in for Visual Studio or Visual Web Developer can be found in this blog post. After installing the add-in, you can open the jslint.wsf file in a text editor and explore the various options set in the defaults section. Review the JSLint documentation for details on each option.
Notepad++ is a free source code editor that supports several languages including JavaScript.
Tabs are not defined the same way across various editors which can lead to formatting issues when your code is viewed in another enviroment. To avoid this you can replace tabs with spaces, two spaces is a good default option.
Variable highlighting allows you to select a variable in the code file which highlights all occurrences of the selected variable in the specified color. Enable this option by clicking the Smart Highlighting check box on the MISC tab of the Preferences dialog.
To enable JSLint in Notepad++, download and install the JSLint Plug-in.
Download WebStorm and take a tour of the Quickstart Guide.
Setup Coding style:
For more advanced Code Style formatting, visit the Web Help topic on Code Style.
Setup Code Quality Tools:
checked
.
.jshintrc
file is stored.
/Users/Account/JavaScript/jsapi-resources/jshint/.jshintrc
C:\JavaScript\jsapi-resources\jshint\.jshintrc
For more information on Code Quality Tools, visit the Web Help topic on Code Quality Tools.
Setup JavaScript libraries:
esrijs TypeScript
".<Custom>
".Global
" so all projects may use this library.arcgis-js-api.d.ts
file on disk. e.g.,
/Users/Account/JavaScript/jsapi-resources/typescript/arcgis-js-api.d.ts
C:\JavaScript\jsapi-resources\typescript\arcgis-js-api.d.ts
Debug
".For more information on Configuring JavaScript Libraries, visit the Web Help topic on Configuring JavaScript Libraries. Also read the JetBrains WebStorm Blog on How WebStorm Works: Completion for JavaScript Libraries.
There are many Plugins for WebStorm, in addition to the built-in functionality. The Needs More Dojo plugin is useful for adding support to import Dojo modules, as well as organizing dojo module imports. For more information on Managing Plugins, visit the Web Help topic on Managing Plugins.