An open API service indexing awesome lists of open source software.

https://github.com/autumnchris/tic-tac-toe-game

A Star Wars themed JavaScript Tic-Tac-Toe game where the user can choose to play either a 2-player game with another person present or a 1-player game against the computer.
https://github.com/autumnchris/tic-tac-toe-game

css css3 freecodecamp html html5 javascript js-classes sass scss star-wars the-odin-project theodinproject tic-tac-toe tic-tac-toe-game tictactoe tictactoe-game vanilla-javascript vanilla-js vanillajs webpack

Last synced: 3 months ago
JSON representation

A Star Wars themed JavaScript Tic-Tac-Toe game where the user can choose to play either a 2-player game with another person present or a 1-player game against the computer.

Awesome Lists containing this project

README

          

# STAR WARS Tic-Tac-Toe

A Star Wars themed JavaScript Tic-Tac-Toe game where the user can choose to play either a 2-player game with another person present or a 1-player game against the computer.

Inspired by both the [Tic Tac Toe assignment](https://www.theodinproject.com/lessons/node-path-javascript-tic-tac-toe) as part of the curriculum for the [JavaScript Course](https://www.theodinproject.com/paths/full-stack-javascript/courses/javascript) on [The Odin Project](https://www.theodinproject.com) as well as the [Build a Tic Tac Toe Game challenge](https://www.freecodecamp.org/learn/coding-interview-prep/take-home-projects/build-a-tic-tac-toe-game) as part of the curriculum for the [Coding Interview Prep](https://www.freecodecamp.org/learn/coding-interview-prep) on [freeCodeCamp](https://www.freecodecamp.org).

---

## Built With
* Vanilla JS
* JavaScript
* [Sass](http://sass-lang.com)
* CSS3
* HTML5
* [Node.js](https://nodejs.org/en)
* [Webpack](https://webpack.js.org)
* [Babel](https://babeljs.io)
* [Normalize.css](https://necolas.github.io/normalize.css)
* [Font Awesome](https://fontawesome.com)

## Demo

View project demo at [https://autumnchris.github.io/tic-tac-toe-game](https://autumnchris.github.io/tic-tac-toe-game).

## Instructions

After forking and cloning, navigate to the repository in your command line and install the NPM packages:
```
npm install
```

Run the following script in your command line to run the application:
```
npm start
```

Once the server is running, go to `http://localhost:8080` in your browser.

Before committing any changes, run the following script to update your static files for production:
```
npm run build
```