Skip to content

Latest commit

 

History

History
56 lines (36 loc) · 1.04 KB

File metadata and controls

56 lines (36 loc) · 1.04 KB

lander

A 2D simulation game where you program rocket boosters to land.

Play Now

Mar-10-2023 07-06-40

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
lander

This 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/lander

Clone & Develop

git clone https://github.com/imaustink/lander.git
cd lander
npm install
npm run dev

Then navigate to http://localhost:3000.

Docker

docker build -t lander .
docker run -p 3000:3000 lander

Docker Compose

docker compose up

The app will be available at http://localhost:3000.