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

malilang1

v1.0.1

Published

Le langage de programmation MaliLang

Readme

Documentation Officielle — MaliLang

Un langage simple, expressif et culturel, basé sur des mots bambara et conçu pour apprendre à programmer facilement.

Introduction

MaliLang est un langage interprété basé sur JavaScript, utilisant des mots-clés inspirés des langues du Mali. Il vise à rendre la programmation plus accessible, expressive et culturelle.

Installation

Installation globale (NPM)

npm install -g malilang

Puis dans vscode vous pouvez installer l'extention MaliLang.

Lancer un programme MaliLang

Créer un fichier :

script.mli

Exécuter :

malilang run script.mli

Structure du projet

malilang/
├── lexer.js
├── parser.js
├── interpreter.js
├── keywords.json
└── malilang.js

Mots-clés MaliLang

| Bambara | Description | JS | |--------|-------------|----| | faleden | variable | let | | sebeni | afficher | console.log | | ni | si | if | | noteni | sinon si | else if | | note | sinon | else | | kamasoro | tant que | while | | koson | boucle for | for | | fole | foreach | foreach | | kono | dans | in | | barakunda | fonction | function | | segini | retourner | return | | kilasi | classe | class | | bora | héritage | extends | | jolikaila | constructeur | constructor | | nin | ceci | this | | ba | parent | super | | sugandi | switch | switch | | gnenata | cas | case | | folo | défaut | default | | karali | break | break | | kura | nouveau | new | | fu | null | null | | sebe | vrai | true | | nkalo | faux | false | | kalani | entrée utilisateur | input | | na | importer | import |

Variables

faleden x = 10
faleden nom = "Papin"

Affichage

sebeni "Bonjour"
sebeni 10 + 20

Entrée utilisateur

faleden nom = kalani("Votre nom : ")
sebeni "Bienvenue " + nom

Conditions

ni age >= 18 {
    sebeni "Adulte"
} noteni age >= 13 {
    sebeni "Ado"
} note {
    sebeni "Enfant"
}

Boucles

While

faleden i = 0

kamasoro i < 5 {
    sebeni i
    i = i + 1
}

For

koson i = 0; i < 5; i = i + 1 : {
    sebeni i
}

Foreach

faleden lisi = [10, 20, 30]

fole item kono lisi {
    sebeni item
}

Fonctions

barakunda somme(a, b) {
    segini a + b
}

sebeni somme(4, 5)

Tableaux

faleden l = [1, 2, 3]
sebeni l[0]

Classes

kilasi Person {
    jolikaila(nom, age) {
        nin.nom = nom
        nin.age = age
    }

    saluer() {
        sebeni "Bonjour, je suis " + nin.nom
    }
}

Héritage

kilasi Animal {
    parler() {
        sebeni "L'animal fait un son"
    }
}

kilasi Chien bora Animal {
    parler() {
        ba.parler()
        sebeni "Wouf!"
    }
}

Importation

na "utils.mli"

Exemple complet

sebeni "=== Programme MaliLang ==="

faleden nom = kalani("Ton nom : ")
sebeni "Bonjour " + nom

faleden age = kalani("Ton âge : ")

ni age >= 18 {
    sebeni "Tu es adulte"
} note {
    sebeni "Tu es mineur"
}

faleden nums = [1, 2, 3, 4]

fole n kono nums {
    sebeni "Numéro : " + n
}