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

https://github.com/iminashi/cheating-hangman

Hangman game where the computer cheats.
https://github.com/iminashi/cheating-hangman

bulma fable fsharp safe-stack

Last synced: about 1 month ago
JSON representation

Hangman game where the computer cheats.

Awesome Lists containing this project

README

          

# Cheating Hangman

[![Screenshot](./images/screenshot.png)](https://cheatinghangman.azurewebsites.net/)

A web implementation using the SAFE stack of the cheating hangman program from the book _Think Like a Programmer: An Introduction to Creative Problem Solving_ by V. Anton Spraul.

## Install pre-requisites

- [.NET Core SDK](https://www.microsoft.com/net/download) 5.0 or higher
- [Node LTS](https://nodejs.org/en/download/)

## Starting the application

Before you run the project **for the first time only** you must install dotnet "local tools" with this command:

```bash
dotnet tool restore
```

To concurrently run the server and the client components in watch mode use the following command:

```bash
dotnet run
```

Then open `http://localhost:8080` in your browser.