| Level Navigation: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10⚡ | 11⚡ | 12⚡ | 13⚡ | 14⚡ | 15 | 16 | 17 | 18⚡ | 19 | 20 |
📋 View Complete Activity Guide - Includes planning templates, rubric, and reflection questions
Mad Libs is a word game where players fill in blanks in a story with random words (like nouns, verbs, and adjectives) without knowing the context. The result is usually a funny and nonsensical story!
📖 Learn More: Mad Libs Format - Wikipedia
📺 Learn More: Mad Libs Gameplay Video
🎮 Try It Out: Play Mad Libs on Code.org (Note: This is a client-only version - we’ll build a client/server version!)
Goal: Set up your development environment and understand the project requirements.
User Story: As a developer, I want to create a new project folder with all necessary files so that I can start building my Mad Libs application.
Create a new project folder and set up all the necessary files to get started.
mad-libs-projectnpm init -y to create package.jsonserver.jspublic/mad-libs-form.htmlREADME.mdOpen your project folder in VS Code and verify you can see all files:
server.jspackage.jsonpublic/mad-libs-form.htmlREADME.mdIf any files are missing, create them before moving to Level 2.