Skip to content

Latest commit

 

History

History
41 lines (31 loc) · 709 Bytes

README.md

File metadata and controls

41 lines (31 loc) · 709 Bytes

Sygnal 2048

The 2048 game implemented using the Sygnal framework with fully commented code

Installation

Clone the repository

git clone https://github.com/tpresley/sygnal-2048.git

Or download it as a template using degit

npx degit tpresley/sygnal-2048 sygnal-2048

Install dependencies

cd sygnal-2048
npm install

Run a live dev server with hot reloading using Vite

npm run dev

Build a compiled and distributable version

npm run build

the compiled version will be in the 'dist' folder

To serve the compiled site locally

npm run preview

Or copy the contents of the dist folder to the web server of your choice

Happy Hacking!