Getting Started
Creating an Analog project can be done with minimal steps.
System Requirements
Analog requires the following Node and Angular versions:
- Node v18.13.0 and higher is recommended
- Angular v15 or higher
Creating a New Application
To create a new Analog project, you can use the create-analog
package with your package manager of choice:
- npm
- Yarn
- pnpm
- bun
npm create analog@latest
yarn create analog
pnpm create analog
bun create analog
You can also scaffold a new project with Nx.
Serving the application
To start the development server for the application, run the start
command.
- npm
- Yarn
- pnpm
- bun
npm run start
yarn start
pnpm start
bun start
Visit http://localhost:5173 in your browser to view the running application.
Next, you can define additional routes using components for navigation.