DEV Community

Sura
Sura

Posted on

Creating a react game on AWS

**Prerequisites
**AWS Account
Installed Node.js and npm
React Vite project created (npx create-vite@latest)

Setup the React + Vite Game
Initialize React Vite Project

npx create-vite@latest my-game --template react
cd my-game
npm install
npm run dev

Ensure your game works locally.

Install Amplify CLI:
Initialize Amplify
npm install -g @aws-amplify/cli

Configure Amplify CLI:
amplify configure

Top comments (0)