Neon Man: Cyber Run is a fast-paced neon arcade runner built with Phaser 3 and Vite.
- ๐ฎ Two game modes: Endless and Level
- ๐ง Neon stickman player with glow effects
- โ๏ธ Combat actions: shoot (
J) and close attack (K) - ๐ก๏ธ Power-ups: Shield and Double Jump
- ๐ง Combo and score system with progressive difficulty
- ๐ฑ Touch controls for mobile play
- ๐ Cyber-style UI, starfield backdrop, and neon HUD
- JavaScript (ES Modules)
- Phaser 3
- Vite
- Node.js 18+
- npm 9+
npm installnpm run devThen open the local URL shown in terminal (usually http://localhost:5173 or http://localhost:5174).
npm run build
npm run preview- Jump:
W/Up Arrow/Space - Dash:
Shift - Shoot:
J - Pulse Attack:
K
Neon_Man_Cyber_Run/
โโ .gitignore
โโ index.html
โโ package.json
โโ package-lock.json
โโ README.md
โโ vercel.json
โโ src/
โ โโ main.js
โ โโ style.css
โ โโ game/
โ โโ config.js
โ โโ scenes/
โ โโ BootScene.js
โ โโ MenuScene.js
โ โโ GameScene.js
โ โโ GameOverScene.js
โโ dist/ # production build output
โโ node_modules/ # installed dependencies
npm run dev- start development servernpm run build- create production buildnpm run preview- preview production build locally
- This project uses procedural neon graphics (no external sprites required).
- If port
5173is busy, Vite automatically picks the next available port.