https://github.com/thuyencode/rock-paper-scissors
Project: Rock Paper Scissors | The Odin Project
https://github.com/thuyencode/rock-paper-scissors
theodinproject
Last synced: about 1 year ago
JSON representation
Project: Rock Paper Scissors | The Odin Project
- Host: GitHub
- URL: https://github.com/thuyencode/rock-paper-scissors
- Owner: thuyencode
- Created: 2023-11-12T16:21:12.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-12-23T04:09:56.000Z (over 2 years ago)
- Last Synced: 2025-01-25T22:58:25.078Z (about 1 year ago)
- Topics: theodinproject
- Language: TypeScript
- Homepage: https://thuyencode.github.io/rock-paper-scissors/
- Size: 214 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Rock, Paper and Scissors
[More detail information here](https://www.theodinproject.com/lessons/foundations-rock-paper-scissors).
## Getting started
First, install all the dependencies:
```bash
npm install
# or if you're using Bun
bun install
```
To run the dev server:
```bash
npm run dev
# or if you're using Bun
bun dev
```
To export and preview the production build:
```bash
npm run build
npm run preview
# or if you're using Bun
bun run build
bun preview
```