npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

devboost-cli

v2.0.7

Published

A powerful CLI for developers.

Downloads

476

Readme

🚀 DevBoost CLI

Version License Node

🚀 Your Ultimate Productivity Booster for Developers

Simplifying day-to-day development tasks with a modern, feature-rich CLI tool.

🌟 Features

╭──────────────────────────────────────────────╮
│ ⚡ Project Scaffolding                      │
│ 📦 Dependency Management                    │
│ 🔧 Environment Management                   │
│ 🔄 Git Workflow Automation                  │
│ 🧪 API Testing Suite                        │
│ 📊 Monitoring & Analytics                   │
╰──────────────────────────────────────────────╯

🛠 Installation

# Install globally
npm install -g devboost-cli

# Verify installation
devboost --version

📖 Commands

🚀 Project Scaffolding

# Create a new React project
devboost init react --typescript --directory my-app

# Generate components with ease
devboost generate component MyComponent

📦 Dependency Management

# Add dependencies
devboost add axios
devboost add jest --dev

# Remove dependencies
devboost remove lodash

# Update all dependencies
devboost update

🔧 Environment Management

# Set environment variables
devboost env set API_URL=https://api.example.com

# List current environment variables
devboost env list

# Switch between environments
devboost env switch development

🔄 Git Workflow Automation

# Check git status
devboost git status

# Create a new branch
devboost git --branch feature/new-feature

# Commit with a custom message
devboost git --commit "feat: add new feature"

# Push changes to the remote repository
devboost git --push

🧪 API Testing

# Test GET request
devboost api --url https://api.example.com/users --method GET

# Test POST request with payload
devboost api --url https://api.example.com/users \
  --method POST \
  --data '{"name": "John Doe", "email": "[email protected]"}' \
  --headers '{"Content-Type": "application/json"}'

🏗 Project Structure

devboost-cli/
├── src/
│   ├── commands/          # Command implementations
│   │   ├── api.js          # API operations
│   │   ├── dependency.js   # Package management
│   │   ├── env.js          # Environment configuration
│   │   ├── git.js          # Git commands
│   │   ├── init.js         # Project scaffolding
│   │   └── index.js        # Command registry
│   └── core/              # Core logic
│       ├── utils.js        # Helper functions
│       └── config.js       # Configuration settings
└── package.json           # Project metadata

⚙️ Error Handling

try {
  await executeCommand(command);
} catch (error) {
  console.error(`[ERROR] ${error.message}`);
  process.exit(1);
}

📦 Dependencies

{
  "@angular/cli": "^19.0.2",
  "@angular/core": "^19.0.1",
  "axios": "^1.7.8",
  "chalk": "^5.3.0",
  "commander": "^9.5.0",
  "dotenv": "^16.4.6",
  "fs-extra": "^11.1.0",
  "inquirer": "^9.2.3",
  "ora": "^6.3.0",
  "react": "^18.3.1"
}

🤝 Contributing

We welcome contributions! To contribute:

  1. Fork the repository
  2. Create a feature branch: git checkout -b feature/awesome-feature
  3. Commit your changes: git commit -m "feat: add awesome feature"
  4. Push to your branch: git push origin feature/awesome-feature
  5. Create a Pull Request

📜 License

This project is licensed under the MIT License.


✨ Built with ❤️ for developers by developers. ✨

Achieve more, code less.