Demo from my talk "Resourceful Suspense"
Create .env file in angular-app with a Gemini API key:
touch angular-app/.env
echo GEMINI_API_KEY=[YOUR_KEY_GOES_HERE]Initialize and run the apps:
cd angular-app && npm i -f && npm start
cd react-app && npm startNow visit http://localhost:4200 to preview the Angular app and http://localhost:3000 to preview an almost equivalent React app.
MIT