https://github.com/dynamicsingh/node-guess-the-word-game
Guess the word game developed using NodeJS.
https://github.com/dynamicsingh/node-guess-the-word-game
Last synced: 4 months ago
JSON representation
Guess the word game developed using NodeJS.
- Host: GitHub
- URL: https://github.com/dynamicsingh/node-guess-the-word-game
- Owner: dynamicsingh
- Created: 2017-02-05T01:13:24.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-02-05T06:34:28.000Z (over 8 years ago)
- Last Synced: 2025-01-16T10:34:27.676Z (6 months ago)
- Language: HTML
- Homepage:
- Size: 1.19 MB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# node-guess-the-word-game
I took almost every english word (around 200k words) and built a game using NodeJS.
##How to Use
###The underscore
This character is great for games like What's the Phrase (a knock off
of Wheel of Fortune)Type a word into the text box with the following pattern:
st___
and you'll get a word from words collection matching with our pattern.
Few words which match our pattern:
stack
stade
staff
stage
stagy
startbut you will get only one word out of it and you have to guess it first before hitting enter key:
For instance, you may get:start
If you guessed it at the first place. You WIN !.
You can play it with with your friends to increase vocab knowledge.##Instructions for running
Go to http://nodejs.org and install NodeJS
Clone this repo
And `cd` into the directory (all instructions below assume you are in
the `wonder-the-word-game` directory:cd wonder-the-word-game
##Run Locally
Install all the dependencies:
npm install (you may need to prefix this with sudo if you're on Mac)
Run the app:
node server.js
Consider using the package `nodemon`, it reduces the pain of server restart.
npm install nodemon -g
nodemon server.jsThen open `http://localhost:3000` in your browser