auto-n-glad
v1.0.3
Published
CLI tool to run npm commands across multiple Node.js projects
Maintainers
Readme
auto-n-glad
A CLI tool that automatically finds all Node.js projects inside a folder and runs commands like install, dev, or build in each project.
Useful for monorepos or projects with separate backend and frontend folders.
Installation
Install globally:
npm install -g auto-n-glad
Or use directly with npx: npx auto-n-glad install npx auto-n-glad dev
Usage
Run inside the root project folder.
Install dependencies in all projects:
auto-n-glad install
Start development servers:
auto-n-glad dev
Run builds:
auto-n-glad build
Example Project
project-root ├ backend │ └ package.json ├ frontend │ └ package.json └ package.json
run : auto-n-glad dev
Will automatically start: backend > npm run start frontend > npm run dev
Features
- Automatically finds all
package.jsonfiles - Works with nested projects
- Supports npm, yarn, and pnpm
- Runs scripts like dev, start, or build automatically
- Skips node_modules and build folders
help
auto-n-glad --help or auto-n-glad --h
