Javascript
π₯ Claude Code plugin that teaches programming while you vibecode β contextual explanations, micro-quizzes, and belt progression. Free & open source by Dojo Coding.
npx -y skills add DojoCodingLabs/code-sensei --skill javascriptAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 12 stars12 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
JavaScript essentials for vibecoders. Activated when Claude works with .js/.mjs/.jsx/.ts files. Covers the language concepts most commonly encountered during vibecoding.
SKILL.md
2.7 KB, as published. Nobody here has run it
JavaScript β CodeSensei Teaching Module
What is JavaScript?
- Analogy: If HTML is the skeleton and CSS is the skin, JavaScript is the brain and muscles. It makes things HAPPEN β clicks, animations, data loading, form validation.
- Key insight: JavaScript runs in the browser (frontend) AND on the server (backend with Node.js). Same language, two different environments.
Core Concepts to Teach (in order of frequency during vibecoding)
const / let / var
const= a constant, can't be reassigned (use this most of the time)let= a variable that can changevar= the old way, avoid it (mention only if Claude uses it)- Quiz: "Why did Claude use
constinstead oflethere?"
Arrow Functions () => {}
- Analogy: A shorthand recipe card. Instead of writing "Function: do this thing," you write "=> do this thing"
- This is the #1 syntax that confuses beginners. Normalize it early.
Objects {}
- Analogy: A filing cabinet with labeled drawers. Each drawer (property) has a name and contains something.
{ name: "Juan", age: 25 }β the object has two "drawers"
Arrays []
- Analogy: A numbered list. Items have positions (starting from 0, not 1!)
.map(),.filter(),.forEach()β the "assembly line" methods
Async/Await
- Analogy: Ordering food at a restaurant. You place the order (
await) and the kitchen works on it while you chat. When it's ready, it arrives. You don't stand at the kitchen door waiting. - Key insight: Some things take time (loading data, saving to database).
awaitmeans "wait for this to finish before moving on."
Import/Export
- Analogy: Sharing tools between workshops.
exportputs a tool in the shared toolbox.importgrabs it from there. - Key insight: This is how code is organized into separate files that work together.
Template Literals `Hello ${name}`
- Analogy: Mad Libs β the backtick string has blanks (
${}) that get filled in with real values.
Common Patterns in Vibecoded Projects
fetch()β asking another server for data (like calling a restaurant for delivery).then()/.catch()β what to do when the data arrives / if something goes wrongJSON.parse()/JSON.stringify()β translating between text and data objectsconsole.log()β leaving yourself a note to see what's happening (debugging)
What NOT to Teach Early
- Prototypes, closures,
thiskeyword, generators, symbols, proxies - These are advanced topics that vibecoders rarely encounter directly