/galaxywars

A Javascript space shooty game

Primary LanguageJavaScriptMIT LicenseMIT

Galaxy Wars

Installation

Requirements:

  • Node
  • NPM

Install dependencies

npm install

Building

Development mode

Development mode builds the project in a dist folder without minifying, making the code more readable during debugging.

npm run compile

Production mode

Production mode builds the project in a dist folder and optimises and minimizes the code during compilation, creating smaller files.

npm run build

Development server

Start a development server which automatically updates when code is changed. Automatically opens a browser tab.

npm run dev