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

bangla-lang-by-tanzid

v1.0.2

Published

বাংলা ভাষায় লেখা একটি toy programming language

Readme

বাংলা-ল্যাং 🇧🇩

বাংলা ভাষায় লেখা একটি toy programming language। Inspired by Bhailang


🌐 Live Demo

🔗 https://tanzid-48.github.io/bangla-lang/



🌐 Live Demo

👉 বাংলা-ল্যাং চালিয়ে দেখুন


🚀 কিভাবে run করবেন

git clone https://github.com/tanzid-48/bangla-lang.git
cd bangla-lang
node src/index.js examples/hello.bangla

📖 Keywords

| keyword | মানে | |---|---| | শুরু | প্রোগ্রাম শুরু | | শেষ | প্রোগ্রাম শেষ | | ধরো | variable declare / reassign | | দেখাও | print / output | | জিজ্ঞেস করো | user থেকে input নেওয়া | | যদি | if condition | | নাহলে | else | | যতক্ষণ | while loop | | গণনা করো | for loop | | থামো | break | | এগিয়ে যাও | continue | | কাজ | function declare | | করো | function call | | ফেরত দাও | return | | সমস্যা | error throw | | সত্য | true | | মিথ্যা | false | | শূন্য | null |


➕ Operators

| operator | মানে | |---|---| | + - * / | যোগ, বিয়োগ, গুণ, ভাগ | | % | ভাগশেষ (modulus) | | == != | সমান, অসমান | | < > <= >= | তুলনা |


📝 লেখার নিয়ম

| নিয়ম | উদাহরণ | |---|---| | প্রতিটি প্রোগ্রাম শুরু দিয়ে শুরু করতে হবে | শুরু | | প্রতিটি প্রোগ্রাম শেষ দিয়ে শেষ করতে হবে | শেষ | | প্রতিটি statement এর শেষে ; দিতে হবে | দেখাও "হ্যালো"; | | variable বানাতে ধরো লাগবে | ধরো ক = ৫; | | print করতে দেখাও লাগবে | দেখাও ক; | | যদি এর পর (condition) তারপর { } | যদি (ক == ৫) { } | | যতক্ষণ এর পর (condition) তারপর { } | যতক্ষণ (ক < ৫) { } | | গণনা করো এর পর (init; cond; update) | গণনা করো (ধরো ক = ১; ক < ৫; ক = ক + ১) | | function বানাতে কাজ লাগবে | কাজ নাম(প্যারামিটার) { } | | comment লিখতে // লাগবে | // এটা comment |


💡 উদাহরণ

Hello World

শুরু
দেখাও "হ্যালো বাংলাদেশ!";
শেষ

Variable ও Condition

শুরু
ধরো বয়স = 18;
যদি (বয়স >= 18) {
  দেখাও "প্রাপ্তবয়স্ক";
} নাহলে {
  দেখাও "অপ্রাপ্তবয়স্ক";
}
শেষ

For Loop

শুরু
গণনা করো (ধরো ক = 1; ক <= 5; ক = ক + 1) {
  দেখাও ক;
}
শেষ

While Loop

শুরু
ধরো ক = 1;
যতক্ষণ (ক <= 5) {
  দেখাও ক;
  ধরো ক = ক + 1;
}
শেষ

Function

শুরু
কাজ যোগ(ক, খ) {
  ফেরত দাও ক + খ;
}
ধরো ফলাফল = যোগ(10, 20);
দেখাও ফলাফল;
শেষ

Array

শুরু
ধরো তালিকা = [10, 20, 30, 40, 50];
দেখাও তালিকা;
দেখাও তালিকা[0];
শেষ

Input

শুরু
জিজ্ঞেস করো নাম "আপনার নাম কী?";
দেখাও "হ্যালো " + নাম;
শেষ

Error Handling

শুরু
ধরো খ = 0;
যদি (খ == 0) {
  সমস্যা "শূন্য দিয়ে ভাগ করা যাবে না!";
}
শেষ

Modulus

শুরু
গণনা করো (ধরো ক = 1; ক <= 10; ক = ক + 1) {
  যদি (ক % 2 == 0) {
    দেখাও ক;
  }
}
শেষ

📁 Project Structure

bangla-lang/
├── src/
│   ├── lexer.js          # বাংলা keywords → tokens
│   ├── interpreter.js    # tokens → execute
│   └── index.js          # main entry point
├── examples/
│   ├── hello.bangla      # hello world
│   ├── function.bangla   # function example
│   ├── array.bangla      # array example
│   ├── error.bangla      # error handling
│   └── forloop.bangla    # for loop example
└── README.md

👨‍💻 তৈরি করেছেন

tanzid-48