CoffeeScript Support
WebStorm provides CoffeeScript support.
WebStorm recognizes *.coffee
files, and allows you to edit them providing full range of coding assistance without any additional steps from your side.
CoffeeScript files are marked with icon.
To run, debug, and test your code you will need it translated into JavaScript which requires a transpiler and Node.js. For more details on CoffeeScript transpilation, see Transpiling CoffeeScript to JavaScript.
In this section:
- CoffeeScript Support
- Transpiling CoffeeScript to JavaScript
- Running CoffeeScript
- Debugging CoffeeScript
Preparing for CoffeeScript development
To prepare for CoffeeScript development, follow these steps
- Make sure the CoffeeScript and Node.js plugins are enabled. The plugins are bundled with WebStorm and activated by default. If they are not, enable the plugins, see Enabling and Disabling Plugins for details.
- Download and install the Node.js framework.
-
Configure the Node.js interpreter in WebStorm:
- On the Node.js and NPM page that opens, specify the location of the desired Node.js interpreter.
Coding Assistance
CoffeeScript support includes:
- Code completion for keywords, labels, variables, parameters and functions.
- Error and syntax highlighting.
- Code formatting and folding.
-
Refactoring:
- Common refactoring procedures, such as extract method , inline, rename/move, etc.
- CoffeeScript-specific refactoring procedures, such as change signature, extract parameter, extract variable.
See JavaScript-Specific Refactorings for details.
-
Code generation
- Generating code stubs based on file templates during file creation.
- Ability to create line and block comments (Ctrl+Slash/Ctrl+Shift+Slash).
- Navigation through source code
- Navigating with Structure View.
- (Ctrl+B).
- (Ctrl+Alt+B) from overridden method / subclassed class.
- (Ctrl+Shift+Alt+N.
- Compiling to JavaScript for further running, debugging, and testing, see Running CoffeeScript and Debugging CoffeeScript.
-
Executing CoffeeScript files involves:
- Ability to preview results of CoffeeScript files compilation to JavaScript.
- Ability to launch CoffeeScript files from the context menu.
- Run/debug configuration for NodeJS includes the ability to use CoffeeScript plugin.
See Also
Language and Framework-Specific Guidelines:
Last modified: 11 July 2016