Home

Awesome

Ember Cli Extension for Visual Studio Code

Build Status

Use Ember and Ember Cli directly from Visual Studio Code. After installation, all ember cli commands are available through Code's own command list, enabling you for example to generate blueprints, run tests, or build your app without leaving your editor. Also, IntelliSense for Ember!

Screenshot

Features

Commands Implemented

Install

In Visual Studio Code, run ext install vsc-ember-cli - or, simply hit CMD/CTRL + Shift + P, search for "Install Extension", and then search for "ember cli".

Usage in subfolder

If your Ember app is within a subfolder of your workspace, you have to create an ember.json file in the .vscode folder of your workspace. If the .vscode folder doesn't exist yet, you also have to create it. After that you have to add a config that specifies the folder in which the Ember app resides.

Example:

{
  "appPath": "./ember-app"
}

The addon will do the regular setup (like creating a jsconfig.json) as soon as the first command is executed.
Tip: There is a command to setup the project for Visual Studio Code.

IntelliSense Support

Support is experimental - IntelliSense is enabled with typings, which are automatically installed in a typings folder inside your project. The typings file should be automatically detected, but if not, you can either add it to your project's jsconfig.json, or add a /// reference to the typings in individual files.

To disable the automatic installation, create a ember.json file inside your project's .vscode folder and set the installTypings property to false:

{
    "installTypings": false
}

Bugs and Issues

Under the covers, this addon is merely executing Ember commands for you. In practice, this sometimes leads to issues, since the addon does not come with Ember Cli and is absolutely reliant on your system being setup properly. To debug issues, set an environment variable named VSC_EMBER_CLI_DEBUG - Visual Studio Code will then always display the output window for all operations, allowing you to see what's happening in the terminal.

Contributions

There's a few things that could improve the extension - snippets and IntelliSense support is probably at the very top of everyone's wish list. Contributions are extremely welcome!

Credits & License

IntelliSense for Ember was made possible in parts by Tilde's Peter Wagenet and Ciena's Steven Glanzer, Eric White, and Justin Lafleur.

MIT, please see LICENSE for details. Copyright (c) 2015 Felix Rieseberg and Microsoft Corporation.