AppCode 2017.3 Help

Node.js

The following is only valid when Node.js Plugin is installed and enabled!

Node.js is a lightweight runtime environment for executing JavaScript on the server side. AppCode integrates with Node.js providing assistance in configuring, editing, running, debugging, testing, profiling, and maintaining your applications.

Before you start

  1. Download and install the Node.js runtime environment.
  2. Install and enable the NodeJS plugin. The NodeJS plugin is not bundled with AppCode, but it can be installed from the JetBrains plugin repository as described in Installing, Updating and Uninstalling Repository Plugins and Enabling and Disabling Plugins.

Quick start with a Node.js application

Here we will use a simple Express application as an example.

To create an application

  1. Choose File | New Project on the main menu or click Create New Project on the Welcome screen. The New Project dialog box opens.
  2. In the left-hand pane, choose Node.js Express App.
  3. In the right-hand pane, specify the project folder, the Node.js interpreter, and the version of express-generator to use. In the Options area, choose the template language and the Style Sheet language to use.
  4. When you click Create, AppCode generates a Node.js Express-specific project with all the required configuration files.

Configuring Node.js in a project

  1. In the Settings/Preferences dialog (⌘,), choose Node.js and NPM under Languages and Frameworks. The Node.js and NPM page opens.
  2. In the Node Interpreter field, choose the interpreter from the drop-down list or from the dialog that opens when you click browseButton.
Last modified: 27 March 2018

See Also