Preview your app

Project IDX lets you preview your work by rendering a live view of your application alongside your code editor. IDX web previews render an inline frame (iFrame) of the app's web server and a cloud-based Android emulator.

Enable and configure your preview environment

To preview your app in your workspace, you must configure your preview environment.

  1. Enable previews in your .idx/dev.nix configuration file. IDX automatically generates this file when you create a new workspace and includes any applicable preview environments based on the template you select. If the file isn't in your IDX code repository, create it. Set the idx.previews attribute to true and add configuration attributes, as the following example shows:

    { pkgs, ... }: {
    
    # NOTE: This is an excerpt of a complete Nix configuration example.
    # For more information about the dev.nix file in IDX, see
    # https://developers.google.com/idx/guides/customize-idx-env
    
    # Enable previews and customize configuration
    idx.previews = {
      enable = true;
      previews = {
        # The following object sets web previews
        web = {
          command = [
            "npm"
            "run"
            "start"
            "--"
            "--port"
            "$PORT"
            "--host"
            "0.0.0.0"
            "--disable-host-check"
          ];
          manager = "web";
        };
        # The following object sets Android previews
        # Note that this is supported only on FLutter workspaces
    
        android = {
          manager = "flutter";
        };
      };
    };
    
    

    For a full list of Nix attributes in IDX, see Nix + IDX.

  2. Rebuild your environment:

    • Run the Project IDX: Hard restart command from the command palette (Cmd+Shift+P/Ctrl+Shift+P).
    • Click Rebuild environment from the Environment config updated notification.

    When you rebuild the environment after modifying your dev.nix file, the preview panel appears in your workspace showing Android and Web tabs, depending on what you've enabled. However, you might need to wait a while for the environment to rebuild. Try closing the workspace and then reopening it from the IDX dashboard.

Use app previews

IDX offers web previews on Chrome and Android emulators (on flutter workspaces) that install your app on the preview environment, so you can test it fully, from end to end, directly from your workspace.

Refresh previews for web and Android

IDX hooks into the hot reload functionalities of the underlying frameworks (like npm run start and flutter hot-reload) to give you a tight inner development loop. This section covers the different types of reloads to help you troubleshoot if the default behavior on IDX does not work well for your use case.

  • Automatic Hot Reload: Hot reloads are automatically performed when you save a file. Sometimes known as Hot Module Replacement (or HMR), a hot reload updates your app without reloading the page (for web apps) or without restarting or reinstalling the app (for emulators). This approach is excellent for preserving your app's live state but may sometimes not work as intended.

  • Manual Full Reload: This option is equivalent to a page refresh (for web apps) or an app restart (for emulators). We recommend using a full reload to capture significant changes to your source code, such as when refactoring large chunks of code.

  • Manual Hard Restart: This option performs a complete restart of IDX's preview system, which includes stopping and restarting your app's web server.

All reload options are available using either the preview toolbar or the command palette (Cmd+Shift+P on Mac or Ctrl+Shift+P on ChromeOS, Windows, or Linux), under the IDX category.

To use the preview toolbar, follow these steps:

  1. Click the reload icon to refresh the page. This is forces a full reload. For a different type of refresh, click the arrow next to the reload icon to expand the menu.
  2. Select the refresh option you want from the menu: Hot Reload, Full Reload, or Hard Restart.

    The preview toolbar is at the top of the preview panel

Configure autosave and hot reload

By default, IDX autosaves your work one second after you stop typing, triggering automatic hot reloads. If you want IDX to save your work at a different interval, change the autosave setting. You can also turn off autosave.

Configure autosave

  1. Open Project IDX.
  2. Click the Settings icon. The Settings window appears.
  3. Search for Files: Auto Save and verify that the field is set to `afterDelay`.
  4. Search for Files: Auto Save Delay. The Auto Save Delay field appears.
  5. Enter a new autosave delay interval, expressed in milliseconds. Changes to your work are now automatically saved based on the new autosave delay setting.

Turn off autosave

  1. Open Project IDX.
  2. Click the Settings icon. The Settings window appears.
  3. Search for Files: Auto Save.
  4. Click the drop-down and select off. Autosave is now disabled.