Weather Forecast & Traffic Cam

Screenshot

Installation

pnpm is required for this.

Install pnpm

# For Node >16
corepack enable
corepack prepare pnpm@<version> --activate

# For Node <16
npm install -g pnpm

Install packages

# Install the packages
pnpm install

Usage

Starting the both the server and client simultaneously

# Starts both the server and client
pnpm start

Starting the server only

# Starts only the server
cd packages/server
pnpm start

Starting the client only

# Starts only the client
cd packages/client
pnpm start

Tech Stacks

  • Vite + React.js (Frontend aka client)
  • NestJS (Backend aka server)
  • Tailwind CSS
  • Lerna (Monorepo)
  • pnpm (alternative package manager to npm or yarn)

Resources