Local vs global tools, bins, and team-friendly workflows
Prefer local (project) tools over global installs; understand package "bin" commands, npm-run PATH, and simple team workflows.
Local vs global tools, bins, and team-friendly workflows is a free JavaScript Academy lesson on CoddyKit — lesson 3 of 3. You can read the complete lesson below for free — then practise it hands-on in the browser with a built-in code editor and a 24/7 AI tutor. It is part of the JavaScript Academy learning path, one of 3 lessons in the course, and your progress syncs across the web and the CoddyKit app.
Why local tools?
Goal: Run the same tools everywhere.
- Prefer local tools (devDependencies)
- Use npm scripts so PATH includes local node_modules/.bin
- Understand bin entries in packages
- Avoid global drift

Local beats global
npm run automatically adds node_modules/.bin to PATH, using the project's tool version.
// Emulate running a tool locally vs globally
function runLocal() {
console.log("npm run lint");
console.log("→ uses node_modules/.bin/eslint (project version)");
}
function runGlobal() {
console.log("eslint .");
console.log("→ might use a different global version on each machine");
}
runLocal();
runGlobal();

How CLIs appear
The package bin field creates executables in node_modules/.bin (e.g., mytool).
// Packages expose CLI commands via "bin" in package.json
const pkgLines = [
"{",
" \"name\": \"my-tool\",",
" \"version\": \"1.0.0\",",
" \"bin\": {",
" \"mytool\": \"./dist/cli.js\"",
" }",
"}"
];
for (const l of pkgLines) console.log(l);
// Install as devDependency => creates node_modules/.bin/mytool
console.log("After install: run with npm run or npx mytool");

PATH inside scripts
Inside npm scripts, your local tools are found automatically via the modified PATH.
// When using npm run <name>, PATH includes node_modules/.bin first
const envExplain = [
"npm run build -> PATH starts with node_modules/.bin",
"so running \"vite\" resolves to ./node_modules/.bin/vite"
];
for (const l of envExplain) console.log(l);

Team workflow
Workflow:
- Add as devDependency
- Create a script
- Commit the lockfile
- Use npm ci for clean installs
// Team checklist for consistent tools
const checklist = [
"1) Add tool to devDependencies",
"2) Add an npm script (e.g., \"lint\")",
"3) Commit package.json and lockfile",
"4) Teammates run: npm ci && npm run lint"
];
for (const step of checklist) console.log(step);

Globals (rarely)
Rare global cases:
- System-wide utilities you use manually (e.g., http-server for quick tests)
- But prefer npx for one-off tools and project-local installs for teams

Local vs global quiz
Quick check: Consistent tool versions.

Recap
Recap: Install tools locally, expose CLIs via bin, run them through npm scripts (PATH includes .bin), commit your lockfile, and avoid global drift.

Frequently asked questions
Is the “Local vs global tools, bins, and team-friendly workflows” lesson free?
Yes — the full text of “Local vs global tools, bins, and team-friendly workflows” is free to read here on the web, and the JavaScript Academy course includes 3 lessons in total. To practise it interactively (a built-in code editor and a 24/7 AI tutor) and unlock the rest of the JavaScript Academy course, upgrade to CoddyKit PRO.
What will I learn in “Local vs global tools, bins, and team-friendly workflows”?
Prefer local (project) tools over global installs; understand package "bin" commands, npm-run PATH, and simple team workflows. You practise JavaScript Academy with hands-on code you run directly in the browser, and a 24/7 AI tutor answers your questions as you work through the lesson.
Do I need any experience to start JavaScript Academy?
No prior experience is required. JavaScript Academy on CoddyKit is structured for beginners through advanced learners; this is — lesson 3 of 3, so you can start here or from the beginning and move at your own pace.
How long does the “Local vs global tools, bins, and team-friendly workflows” lesson take?
Most CoddyKit lessons take about 5–10 minutes. Each one is bite-sized and interactive, so you make steady progress and pick up exactly where you left off across the web and the app.
Can I write and run code in this JavaScript Academy lesson?
Yes. Every JavaScript Academy lesson includes a built-in code editor, so you write and run real code right in your browser and get instant AI feedback — no local setup required.
All lessons in this course
- package.json, scripts, and deps vs devDeps
- npx and semantic versioning ranges
- Local vs global tools, bins, and team-friendly workflows