Skip to content

awesomehub/app

Repository files navigation

AwesomeHub App

This repository contains the sources for AwesomeHub Angular application.

Live production build can be found at awesomehub.js.org

About

The App was originaly 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.

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.

Setup

Prerequisites

  • Node >= 12.14.1
  • PNPM >= 6.0
# Clone the repo
$ git clone https://github.com/awesomehub/app.git awesomehub-app
$ cd awesomehub-app

# Install dependencies
$ pnpm install

# Start dev server
$ pnpm start

Main Commands

Command Description
pnpm start Start dev server @ localhost:4200
pnpm build Build production bundles to ./dist directory
pnpm build:debug Build unoptimized production bundles for debugging purposes to ./dist directory
pnpm serve Start web server @ localhost:5000 to serve build artifacts from ./dist directory
pnpm lint Lint TypeScript source with ESLint
pnpm ng or ng Run Angular CLI commands (eg. ng generate module)