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

bhilal

v1.2.4

Published

Un langage de programmation moderne avec outils de cybersécurité intégrés (Node.js + Go)

Readme

💎 Bhilal Language v1.2.0

Bhilal est un langage de programmation moderne avec outils de cybersécurité intégrés (Node.js + Go).

🚀 Installation ultra-simple - Node.js et Go s'installent automatiquement !

🎯 Installation en 1 commande (npm)

sudo npm install -g bhilal

L'installateur détecte et installe automatiquement :

  • ✅ Node.js 14+ (si manquant)
  • ✅ Go (si manquant)
  • ✅ Dépendances npm
  • ✅ Compilation des outils de sécurité Go

C'est tout ! Vous pouvez immédiatement utiliser bhilal.

🛠️ Usage rapide

bhilal mon_script.bh    # Exécuter un script
bhilal                 # Mode interactif (REPL)

🔐 Fonctions de cybersécurité

| Fonction | Description | Exemple | |----------|-------------|---------| | scan_ports(host, ports) | Scan TCP multi-threadé | scan_ports("127.0.0.1", [80, 443]) | | dirbuster(url) | Brute force répertoires web | dirbuster("http://example.com") | | dns_resolve(hostname) | Résolution DNS | dns_resolve("github.com") | | dns_bruteforce(domain) | Brute force sous-domaines | dns_bruteforce("example.com") | | subnet_scan(cidr) | Scan réseau CIDR | subnet_scan("192.168.1.0/24") | | requete_http(url) | Requêtes HTTP/HTTPS | requete_http("https://api.github.com") |


📝 Exemple de script de sécurité

# scan.bh - Scanner de sécurité simple
montre("=== Scan de ports ===")
soit resultats = scan_ports("127.0.0.1", [22, 80, 443, 3306])

pour chaque r dans resultats {
    si r.open {
        montre("✓ Port", r.port, "ouvert (", r.service, ")")
    }
}

Bhilal est un langage de programmation moderne, puissant et intuitif, conçu pour être simple à apprendre tout en offrant des fonctionnalités avancées comme la POO et une bibliothèque standard complète.

🚀 Fonctionnalités

  • Syntaxe Épurée : Inspirée du C et du JavaScript, avec des braces {}.
  • POO Complète : Classes, instantiation (nouveau) et héritage (herite de).
  • Bibliothèque Standard : Fonctions intégrées pour les listes (min, max, croissant), l'aléatoire et la saisie utilisateur.
  • Mode Interactif (REPL) : Testez votre code en temps réel.
  • Gestion des Erreurs : Rapports précis avec numéro de ligne et de colonne.
  • CLI Globale : Installez et lancez vos scripts .bh partout.

📦 Installation

# Clonez le dépôt
https://github.com/7Bhil/Language-Bhilal.git
cd Bhilal

# Installez les dépendances
npm install

# Installez la commande globalement
sudo npm link

🛠️ Usage

⚙️ Étape cruciale : Activer la commande

Pour pouvoir utiliser la commande Bhilal directement, allez dans le dossier du code et lancez l'installation :

cd language
sudo npm link

Lancer un script

Bhilal mon_script.bh

Mode Interactif (REPL)

Bhilal

📝 Exemple de Code

classe Animal {
    fonction manger() { montre("Miam !") }
}

classe Chien herite de Animal {
    fonction crier() { montre("Wouaf !") }
}

soit rex = nouveau Chien()
rex.manger()
rex.crier()

soit scores = [45, 12, 89]
montre("Meilleur score :", max(scores))

💻 Compatibilité

Bhilal est propulsé par Node.js, ce qui le rend compatible avec :

  • Windows 🪟
  • macOS 🍎
  • Linux 🐧

[!NOTE] Bien que le langage soit universel, certaines fonctions comme execute() dépendent des commandes disponibles sur votre système (par exemple, ls sur Linux vs dir sur Windows).

📜 Licence

Ce projet est sous licence MIT. Voir le fichier LICENSE pour plus de détails.

Language-Bhilal.