Skip to content

Serving ​

After completing the installation, start the Alpha Fusion development server from your project root directory:

sh
npm start

This command runs ng serve --open, starts the local development server, and automatically opens your default browser.

The server watches your source files and rebuilds the application whenever changes are made.

Once the server is running, the application will be available at: http://localhost:4200/

Alternate Command ​

You can also start the development server directly using Angular CLI:

sh
ng serve --open

This command provides the same behavior as npm start.

Information

â„šī¸ If you encounter error messages containing keywords such as HEAP, JavaScript heap out of memory, or stack-related errors while running npm start or ng serve --open, the most common cause is an outdated Node.js version.

Update Node.js to the latest LTS version and try running the command again.