An open API service indexing awesome lists of open source software.

https://github.com/sheenawhittier/javascript-programming

JavaScript learning repo featuring a vanilla web app and an Angular app (Node/npm tooling, Angular CLI)
https://github.com/sheenawhittier/javascript-programming

angular angular-cli css frontend html javascript learning practice web

Last synced: 4 months ago
JSON representation

JavaScript learning repo featuring a vanilla web app and an Angular app (Node/npm tooling, Angular CLI)

Awesome Lists containing this project

README

          

# JavaScript Programming

This repository contains two small front-end projects used for learning JavaScript fundamentals and a modern framework workflow.

## Projects

- **`D280app/`** – Vanilla HTML/CSS/JavaScript app (no framework).
- **`my-angular-app/`** – Angular application scaffolded with Angular CLI.

> License: MIT (see `LICENSE` in this repo)

---

## Tech Stack

- **Languages:** JavaScript, HTML, CSS
- **Framework:** Angular (for `my-angular-app`)
- **Build/Tooling:** Node.js + npm (Angular CLI)

---

## Getting Started

### 1) Vanilla JS app (`D280app/`)
This app is just static files, so you can open it directly or run a tiny local server.

- **Quickest:** open `D280app/index.html` in your browser, or
- **Local server (recommended):**
```bash
# from the repo root
npx http-server D280app -p 5173
# then open http://localhost:5173