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

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

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
```