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)
- Host: GitHub
- URL: https://github.com/sheenawhittier/javascript-programming
- Owner: sheenawhittier
- License: mit
- Created: 2025-09-02T16:44:30.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2025-09-02T17:19:44.000Z (5 months ago)
- Last Synced: 2025-09-02T19:06:15.055Z (5 months ago)
- Topics: angular, angular-cli, css, frontend, html, javascript, learning, practice, web
- Language: HTML
- Homepage:
- Size: 64 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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