Note: Before you start you will need to copy the .env.sample to .env in the server directory and add your own giphy api key.
These apps all demonstrate:
- User Input
- DOM Events
- API Requests
- Conditional Rendering
- Rendering Lists of Data
Note: The server is required by all frontends so you will have to have it running in all cases
cd server
npm i
npm run serve
cd react-frontend
npm i
npm run start
cd vue
npm i
npm run serve
cd angular #or cd angular-with-services
npm i
npx @angular/cli serve
cd svelte
npm i
npm run start
cd vanilla
npx light-server -s . -p 7000