
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
bootstraper-cli
Advanced tools
Bootstraper (bt) is a unified CLI tool that simplifies project initialization across multiple frameworks, languages, and platforms. Create new projects with your favorite frameworks using a single command-line interface.
npm install -g bootstraper-cli
go install github.com/sharik709/bootstraper@latest
Download pre-built binaries from the releases page.
git clone https://github.com/sharik709/bootstraper.git
cd bootstraper
make build
make install
# Basic usage
bt new [framework] [project-name]
# Examples
bt new next my-nextjs-app
bt new vue my-vue-app
bt new go myproject --module=github.com/username/myproject
# Next.js with TypeScript and Tailwind
bt new next my-app --typescript=true --tailwind=true
# Vue with Router and Pinia
bt new vue my-app --typescript=true --router=true --pinia=true
# Laravel with specific version
bt new laravel my-app --version=10.0
bt list
Bootstraper includes support for many popular frameworks:
Run bt list to see all available frameworks and their descriptions.
Bootstraper uses a JSON-based provider registry that makes it easy to add new frameworks without changing the code.
To add a custom framework, modify the providers/registry.json file following this structure:
{
"name": "your-framework",
"description": "Description of your framework",
"command": "installation-command",
"args": ["command", "args", "{project-name}"],
"dependencies": ["required-commands"],
"options": {
"option1": "Description of option1",
"option2": "Description of option2"
}
}
If you're forking this project and want to publish your own version to npm:
package.jsonmake buildnpm publishYou'll need to have an npm account and be logged in via npm login.
Contributions are welcome! See CONTRIBUTING.md for details.
This project is licensed under the MIT License - see the LICENSE file for details.
FAQs
A unified CLI tool to bootstrap projects with multiple frameworks
We found that bootstraper-cli demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.