Create an application with the ServiceNow IDE

  • Release version: Xanadu
  • Updated July 31, 2025
  • 1 minute to read
  • Create a scoped application to develop in source code with the ServiceNow IDE.

    Before you begin

    Create a workspace for your applications. For more information, see Create a workspace in the ServiceNow IDE.

    Role required: admin

    Procedure

    1. Navigate to All > App Development > ServiceNow IDE.
    2. Open a workspace.
    3. Use one of the following keyboard shortcuts to open the command palette:
      • Windows: Ctrl-Shift-P
      • Mac: Cmd-Shift-P
    4. Enter Fluent: Create Fluent App and press Enter.
    5. Enter a name for the application and press Enter.
    6. Enter a description for the application and press Enter.
    7. Enter a scope for the application and press Enter.
      The scope name must be unique on the instance, begin with x_<prefix>, and be 18 characters or fewer. For more information, see Namespace identifier.
    8. Enter a package name for the application and press Enter.
      The package name must adhere to Node Package Manager (npm) package naming standards.
    9. Select a template that defines the default application structure.
    10. Optional: Build and install your application to compile source code into application metadata and make your changes available across the instance. For more information, see Build and install an application in the ServiceNow IDE.

    Result

    A scoped application with the default application structure is added to the instance and open in your workspace. For information about the application structure, see the Application structure section of the Building applications in source code topic.

    An application open in the File Explorer view.

    In the status bar, a message confirms whether the application was created. If the application creation fails, review the output logs in the panel.
    Note:
    For the ServiceNow IDE to install the required dependencies in an application, the public npm registry must respond with the HTTP Access-Control-Allow-Origin header.

    What to do next

    From your Git provider, create a dedicated Git repository for the application. Initialize a local Git repository for your application and push it to the remote repository. For more information, see Initialize a Git repository with the ServiceNow IDE.

    In the ServiceNow IDE, start developing your application in source code with ServiceNow Fluent, writing custom JavaScript modules, or adding third-party libraries.