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 🙏

© 2026 – Pkg Stats / Ryan Hefner

bhil-cli

v1.1.4

Published

Ton gestionnaire de projets personnel

Downloads

704

Readme

bhil — ton gestionnaire de projets

Crée et configure n'importe quel projet en quelques secondes, sans te souvenir des commandes.

🚀 Installation

1. Cloner le projet

git clone https://github.com/7Bhil/bhil-cli.git
cd bhil-cli

2. Lier la commande globalement (Local/Dev)

Cette étape permet d'utiliser la commande bhil partout dans ton terminal pendant que tu développes.

Sur Linux / macOS :

sudo npm install -g bhil-cli

Sur Windows :

  1. Ouvre un terminal (PowerShell ou CMD) en mode Administrateur (clic droit -> Exécuter en tant qu'administrateur).
  2. Tape la commande :
npm install -g bhil-cli

Maintenant tape bhil depuis n'importe où dans ton terminal !


Utilisation

Mode Tableau de bord (Interactif complet)

Tape simplement bhil pour accéder au menu gui :

bhil

Laisse-toi guider pour créer un projet ou ajouter des librairies.

Mode rapide (une seule commande)

# React + Vite
bhil create mon-app --framework react

# Next.js + TypeScript
bhil create mon-app --framework next --ts

# Vue 3 avec pnpm
bhil create mon-app --framework vue --pm pnpm

# Svelte + TypeScript + Tailwind
bhil create mon-app --framework svelte --ts --tailwind

# Node.js + Express
bhil create mon-app --framework node

Ajouter des librairies

# Avec des alias courts
bhil add axios
bhil add zustand icons router

# Forcer l'installation en devDependencies
bhil add tailwind --dev

# Ou le vrai nom npm
bhil add framer-motion @stripe/stripe-js

Les librairies marquées [dev] (Tailwind, Prisma) sont automatiquement installées en devDependencies.

Voir tous les templates

bhil list

Comportement automatique

Après chaque bhil create :

  • ✅ Les dépendances sont installées automatiquement (npm install)
  • ✅ Un repo git est initialisé avec un premier commit (git init)
  • ✅ Si Tailwind est sélectionné, tailwind.config.js et postcss.config.js sont générés

Frameworks supportés

| Alias | Description | Port dev | |-------------|--------------------------|----------| | react | React + Vite | 5173 | | next | Next.js (App Router) | 3000 | | vue | Vue 3 + Vite | 5173 | | svelte | Svelte + Vite | 5173 | | sveltekit | SvelteKit | 5173 | | nuxt | Nuxt 3 | 3000 | | remix | Remix | 3000 | | astro | Astro | 4321 | | node | Node.js + Express | 3000 | | electron | App bureau Electron | — | | django | Django (Python) | 8000 | | laravel | Laravel (PHP) | 8000 | | nestjs | NestJS (Node Backend) | 3000 | | angular | Angular (Frontend) | 4200 | | fastapi | FastAPI (Python) | 8000 | | spring | Spring Boot (Java) | 8080 | | flutter | Flutter (Mobile/Web) | — |

Librairies rapides

| Alias | Librairie | Type | |------------|-----------------------|-------| | tailwind | Tailwind CSS v3 | dev | | router | React Router | prod | | axios | Axios | prod | | query | TanStack Query | prod | | zustand | Zustand | prod | | mui | Material UI | prod | | framer | Framer Motion | prod | | zod | Zod | prod | | rhf | React Hook Form | prod | | icons | Lucide React | prod | | recharts | Recharts | prod | | prisma | Prisma ORM | dev | | supabase | Supabase | prod | | firebase | Firebase | prod | | stripe | Stripe | prod | | auth | NextAuth.js | prod |

shadcn/ui : non supporté, utilise npx shadcn@latest init directement dans ton projet.


Ajouter tes propres templates

Ouvre src/templates/registry.js et ajoute ton framework dans FRAMEWORKS :

monoutil: {
  label: 'Mon outil custom',
  color: 'yellow',
  port: 8080,
  variants: {
    default: { cmd: (pm, name) => `ma-commande ${name}` },
  },
},