https://github.com/kdannothere/pwa_tic_tac_toe
PWA test app: tic-tac-toe
https://github.com/kdannothere/pwa_tic_tac_toe
javascript pwa-app react tic-tac-toe
Last synced: 4 months ago
JSON representation
PWA test app: tic-tac-toe
- Host: GitHub
- URL: https://github.com/kdannothere/pwa_tic_tac_toe
- Owner: kdannothere
- Created: 2025-10-22T15:54:02.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2025-10-22T18:13:19.000Z (4 months ago)
- Last Synced: 2025-10-22T19:09:24.808Z (4 months ago)
- Topics: javascript, pwa-app, react, tic-tac-toe
- Language: JavaScript
- Homepage: https://kdannothere.github.io/pwa_tic_tac_toe/
- Size: 355 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# pwa_tic_tac_toe
This project is a web application built using modern web technologies. It is designed to be a Progressive Web App (PWA), providing a seamless user experience with offline capabilities.
## Project Structure
```
my-wpa-app
├── public
│ ├── index.html # Main HTML document
│ ├── manifest.json # Metadata for the web app
│ └── sw.js # Service worker for offline support
├── src
│ ├── index.js # Entry point of the application
│ ├── App.js # Main App component
│ ├── components
│ │ └── Header.js # Header component
│ ├── styles
│ │ └── main.css # CSS styles for the application
│ └── service
│ └── registerServiceWorker.js # Service worker registration logic
├── package.json # npm configuration file
├── .gitignore # Files to ignore in version control
└── README.md # Project documentation
```
## Getting Started
To get started with the project, follow these steps:
1. **Clone the repository:**
```
git clone
cd my-wpa-app
```
2. **Install dependencies:**
```
npm install
```
3. **Run the application:**
```
npm start
```
4. **Build for production:**
```
npm run build
```
## Features
- Offline support through service workers
- Responsive design
- Easy to customize and extend
## Contributing
Contributions are welcome! Please open an issue or submit a pull request for any enhancements or bug fixes.
## License
This project is licensed under the MIT License. See the LICENSE file for details.