- Install dependencies.
npm install- Open the project folder in your terminal.
- Start a local server to load the app in a browser.
npx http-server .If http-server is unavailable, use Python:
python3 -m http.server 8080- Open
http://localhost:8080(or the port reported by your server).
Run the included test suite:
npm testTests are configured in test/config/karma.conf.js.
index.html— application shell.js/— app logic and Angular controllers/services.css/— styling.test/— unit tests and test configuration.
- Use this repository as-is for implementation work.
- Do not assume hidden scoring scripts or branch-specific task instructions are present in
master. - Keep changes scoped to the files you edit and preserve existing behavior unless required by your assignment.