This repository contains the sources for AwesomeHub Angular application.
Live production build can be found at awesomehub.js.org
The App was originally built for educational purposes and to experiment with Angular 2, NgRx and RxJS; it currently runs on Angular 20. Ongoing maintenance as time allows.
The App UI is built on top of the deprecated Material Design Lite library, It's much lighter than Angular Material, but I originally used it because Angular Material was still in alpha at that time.
- Node >= 20.19
- NPM >= 10
# Clone the repo
$ git clone https://github.com/awesomehub/app.git awesomehub-app
$ cd awesomehub-app
# Install dependencies
$ npm install
# Start dev server
$ npm start| Command | Description |
|---|---|
npm start |
Start dev server @ localhost:4200 |
npm run build |
Build production bundles to ./dist directory |
npm run build:debug |
Build unoptimized production bundles for debugging purposes to ./dist directory |
npm run serve |
Start web server @ localhost:5000 to serve build artifacts from ./dist directory |
npm run typechek |
Check TypeScript source code |
npm run lint |
Lint source code with ESLint |
npm run format |
Format source code with Prettier |
npm run ng or ng |
Run Angular CLI commands (eg. ng generate module) |