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, but I have recently managed to update the codebase to Angular 12, then to Angular 18.
The App UI is built on top of the good old Material Design Lite library, It's much lighter than Angular Material but I originally used it because Angular Material was still in alpha at the time I built this app.
- Node >= 18.19
- NPM >= 10.2.3
# 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 ) |