@k5s/lander
v1.0.8
Published
A lunar lander game where you write code to control the lander and safely land on the moon.
Readme
lander
A 2D simulation game where you program rocket boosters to land.

Getting Started
Play Online
No install required — play instantly at lander.kurpuis.com.
Install via npm
Install globally and run:
npm install -g @k5s/lander
landerThis starts a local server on http://localhost:3000 and opens your browser automatically. Set a custom port with PORT=8080 lander.
Run via npx (no install)
npx @k5s/landerClone & Develop
git clone https://github.com/imaustink/lander.git
cd lander
npm install
npm run devThen navigate to http://localhost:3000.
Docker
docker build -t lander .
docker run -p 3000:3000 landerDocker Compose
docker compose upThe app will be available at http://localhost:3000.
