Found 938 repositories(showing 30)
lydiahallie
Hangman with Node.js
ramirolpz55
A Node.js Command line Hangman App that uses the Movie DB API to gather Actor names via user input then uses the name to create a Hangman game via the command line.
goenning
A simple hangman game made with JavaScript / Node.js
philipstubbs13
A command line version of the classic Hangman game built using Node.js, Inquirer, and Javascript constructors. See how many Minnesota cities you can guess correctly.
jecarpenter
No description available
Balatzar
A node powered API to play hangman
womcauliff
A console-based hangman app written in Node.js that incorporates objects, user-input, and constructors.
Sv443
A game of hangman you can play directly in the CLI. Has English and German words and multiple difficulties.
es128
Prevents hung Node.js processes
jdorn01
jQuery-powered hangman game with node.js multiplayer support
AlexanderCannon
💀a hangman API written in node/express 😵
jhadev
Node CLI Hangman game based on TV Shows using TVMaze API
fleeting
The classic game of Hangman created with Angular, Node, and Express.
womcauliff
Slide deck and sourcecode for a presentation on Object Oriented Programming, using Hangman and Node.js
jithendaraa
A ripoff of facebook made with React, Redux and node with MongoDB and a live pictionary/hangman game using web sockets
cecileceng
Homework Objectives: Create Hangman using constructors, objects and Node.js Process user input via the command line
NealRosenberger
No description available
Fatkiddh
Instructions The completed game should meet the following criteria: The completed game should be able to receive user input using the inquirer or prompt npm packages. Your solution should have, at minimum, three files: Letter.js: Contains a constructor, Letter. This constructor should be able to either display an underlying character or a blank placeholder (such as an underscore), depending on whether or not the user has guessed the letter. That means the constructor should define: A string value to store the underlying character for the letter A boolean value that stores whether that letter has been guessed yet A function that returns the underlying character if the letter has been guessed, or a placeholder (like an underscore) if the letter has not been guessed A function that takes a character as an argument and checks it against the underlying character, updating the stored boolean value to true if it was guessed correctly Word.js: Contains a constructor, Word that depends on the Letter constructor. This is used to create an object representing the current word the user is attempting to guess. That means the constructor should define: An array of new Letter objects representing the letters of the underlying word A function that returns a string representing the word. This should call the function on each letter object (the first function defined in Letter.js) that displays the character or an underscore and concatenate those together. A function that takes a character as an argument and calls the guess function on each letter object (the second function defined in Letter.js) index.js: The file containing the logic for the course of the game, which depends on Word.js and: Randomly selects a word and uses the Word constructor to store it Prompts the user for each guess and keeps track of the user's remaining guesses Letter.js should not require any other files. Word.js should only require Letter.js HINT: Write Letter.js first and test it on its own before moving on, then do the same thing with Word.js HINT: If you name your letter's display function toString, JavaScript will call that function automatically whenever casting that object to a string (check out this example: https://jsbin.com/facawetume/edit?js,console)
SteveSonoa
Node Hangman pulls a random movie title from OMDB and lets you solve the puzzle. Includes hints! This is a node command-line app only.
dawnwages
Hangman Game on Node Command Line
krosenk729
CLI Node Hangman Game 'Yo
moriz23
Build a hangman game in the command prompt by using node.js, constructor functions, and prompt.js.
paulakedouk
UC Berkeley - Coding Bootcamp
jlchafardet
A simple Hangman game written in Node.js
ptpeck357
No description available
MrHuguitos
Jogo da forca clássico desenvolvido com uma arquitetura full-stack, utilizando Node.js para o back-end e HTML/CSS/JS no front-end. O estado do jogo é totalmente gerenciado pelo servidor.
winfredSunga-jw0226
A Greek mythology themed word-guessing game. A player guessed the word one letter a a time.
A crash course focusing on JavaScript (Node) building the game of hangman
luomichelle
Play hangman game by running node.js
clo2go
Node Hangman app using javascript constructors that runs in node CLI.