https://github.com/harry-hopkinson/wordle
A wordle clone written in Typescript
https://github.com/harry-hopkinson/wordle
Last synced: 9 months ago
JSON representation
A wordle clone written in Typescript
- Host: GitHub
- URL: https://github.com/harry-hopkinson/wordle
- Owner: Harry-Hopkinson
- License: mit
- Created: 2022-01-26T10:20:59.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2023-12-15T02:49:32.000Z (over 2 years ago)
- Last Synced: 2025-02-15T07:44:32.966Z (over 1 year ago)
- Language: TypeScript
- Size: 263 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# wordle
A wordle clone written in Typescript
## How to Run
### Run Typescript
Install ts-node and Run Index.ts
```
npm install -g ts-node
cd src
ts-node index.ts
```
Compile to Javascript
```
tsc
cd build
node index.js
```