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.
- Host: GitHub
- URL: https://github.com/autumnchris/tic-tac-toe-game
- Owner: autumnchris
- Created: 2021-04-22T02:39:00.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2025-04-01T01:21:01.000Z (over 1 year ago)
- Last Synced: 2025-05-28T03:07:16.792Z (about 1 year ago)
- Topics: 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
- Language: JavaScript
- Homepage: https://autumnchris.github.io/tic-tac-toe-game
- Size: 968 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```