https://github.com/ashishrout-tech/chess
Multiplayer chess game
https://github.com/ashishrout-tech/chess
nextjs13 shadcn-ui socket-io turborepo
Last synced: 11 days ago
JSON representation
Multiplayer chess game
- Host: GitHub
- URL: https://github.com/ashishrout-tech/chess
- Owner: ashishrout-tech
- License: mit
- Created: 2023-08-08T04:07:49.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2023-09-12T08:23:30.000Z (almost 3 years ago)
- Last Synced: 2023-09-12T16:11:32.804Z (almost 3 years ago)
- Topics: nextjs13, shadcn-ui, socket-io, turborepo
- Language: TypeScript
- Homepage:
- Size: 1.4 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Chess Mania
Landing Page
Create a game. You'll join as white
Other user joins the game with same id as black
Game begins as soon as black joins
### This monorepo houses two Next.js apps and an Express.js api, optimizing development with integrated tailwind-features and the shad-cn component library for the Next.js apps.
Clone the repository. Then, run
```bash
npm install
```
## What's inside?
This repo includes the following packages/apps:
### Apps and Packages
- `docs`: a [Next.js](https://nextjs.org/) app
- `web`: another [Next.js](https://nextjs.org/) app
- `api`: a [Express.js](http://expressjs.com/) app
- `ui`: a stub React and [shadcn](https://ui.shadcn.com/) component library shared by both `web` and `docs` applications
- `tailwind-class`: `tailwind` features are used throughout the monorepo
- `eslint-config-custom`: `eslint` configurations (includes `eslint-config-next` and `eslint-config-prettier`)
- `tsconfig`: `tsconfig.json`s used throughout the monorepo
Each package/app is 100% [TypeScript](https://www.typescriptlang.org/).
### Utilities
This monorepo has some additional tools already setup for you:
- [TypeScript](https://www.typescriptlang.org/) for static type checking
- [ESLint](https://eslint.org/) for code linting
- [Prettier](https://prettier.io) for code formatting
### Build
To build all apps and packages, run the following command:
```bash
npm run build
```
### Develop
To develop all apps and packages, run the following command:
```bash
npm run dev
```