Skip to main content

Getting Started

System Requirements

Analog requires the following Node and Angular versions:

  • Node v16 or higher
  • Angular v15 or higher

Creating a New Application

There are two methods for creating an Analog application. You have the option to utilize the create-analog command to scaffold a standalone project, or you can make use of the Nx plugin, which is included in the @analogjs/platform package.

create-analog

Scaffold an Analog project with the following create-analog command:

npm create analog@latest

Serving the application

To start the development server for the application, run the start command.

npm run start

Visit http://localhost:5173 in your browser to view the running application.

Next, you can define additional routes using components for navigation.

Building the Application

To build the application for deployment

npm run build