A game of Pictionary implemented with Nodejs.
How to run:
npm install
Followed by:
node app
Server is open at port 2000.
Navigate to localhost:2000 in the browser(tested on chrome) and enjoy.
Word list comes from: https://www.thegamegal.com/wp-content/uploads/2011/11/Pictionary-Words-Medium.pdf
You can expand the list on your own :)
Known issues:
- The word file (Words.txt) has a carriage return and a new line character at the end of each line. If run on Linux system, where only a new line character is present, change line 103 from '\r\n' to '\n' in app.js file.