https://github.com/jdegand/resource-demo
Dictionary App reworked to use resource API
https://github.com/jdegand/resource-demo
angular resource-api
Last synced: 2 months ago
JSON representation
Dictionary App reworked to use resource API
- Host: GitHub
- URL: https://github.com/jdegand/resource-demo
- Owner: jdegand
- Created: 2025-03-04T20:44:00.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-06T00:24:04.000Z (over 1 year ago)
- Last Synced: 2025-03-06T01:26:36.532Z (over 1 year ago)
- Topics: angular, resource-api
- Language: TypeScript
- Homepage:
- Size: 132 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Resource Demo
This is reworked from my [Angular Dictionary 17 App](https://github.com/jdegand/angular-17-dictionary-app). I replicated the project in a more modern and maintainable Angular style.
## How to Use
```bash
git clone https://github.com/jdegand/resource-demo.git
# cd into the directory
npm install
npm start
# For Playwright tests to pass, you will need to install browsers.
# You can install all browsers with `npx playwright install`.
# In `playwright.config.ts`, you will need to uncomment / comment out browsers to match what you have installed.
# Or you can just install any browser separately. As configured, the app expects the Chromium browser to be installed.
npx playwright install chromium
ng run e2e
```