Skip to content

Latest commit

 

History

History
42 lines (39 loc) · 817 Bytes

README.md

File metadata and controls

42 lines (39 loc) · 817 Bytes

Tic Tac Toe in elm

This is a version of the famous Tic Tac Toe game written in elm

Installing

node version >= 6.x.x npm version >= 3.x.x

$ npm install

Development

running the server in dev mode

$ npm run start:dev

open the browser and type

http://localhost:8080

assets files are under the path tictactoe-elm

http://localhost:8080/tictactoe-elm/[bundle.min.js|bundle.min.css]

Production

running the server in production mode

$ npm run start

open the browser and type

http://localhost:8080

assets files are under the path tictactoe-elm

http://localhost:8080/tictactoe-elm/[bundle.min.js|bundle.min.css]

Build

create the build folder and adds the minified files and the index.html

$ npm run build