Skip to content
This repository was archived by the owner on Jun 3, 2022. It is now read-only.

Latest commit

 

History

History
24 lines (21 loc) · 1.04 KB

README.md

File metadata and controls

24 lines (21 loc) · 1.04 KB

Installation:

Open console and execute these commands in order to:

  1. open your Git folder (create one in your profile directory)
  2. clone this repository
  3. install dependencies
mkdir git                                               :: create new git folder if you need one
cd git                                                  :: open the git folder
git clone https://github.com/Juraj-Masiar/tsgame.git    :: clone this project
cd tsgame                                               :: open cloned project
npm install                                             :: installs dependencies

Compilation and running:

You need to execute this command every time you want to continue developing your game.
Open console, make sure you are in the git/tsgame folder and execute:

npm run start

This will watch your source files and re-compile them every time you change them.
It will also open web-browser with your game and it will automatically reload it when you make changes.
This command will run until you kill it with "Ctrl + c".