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

marathiscript

v1.0.1

Published

MarathiScript - A fun programming language in Marathi. Created by Atikin Verse.

Readme

🪔 MarathiScript

A fun, beginner-friendly, Marathi language-based programming language built for Indian developers who want to code in their own mother tongue. With syntax inspired by Marathi words and grammar, MarathiScript makes programming more relatable, fun, and culturally connected.

Created by Atikin Verse.


📌 Snippets

Simple code snippet table for MarathiScript projects.

| 🧠 MarathiScript Syntax | 💻 JavaScript Equivalent | | --------------------------- | ------------------------------------------ | | केवल x = 5 | let x = 5 | | स्थिर y = 10 | const y = 10 | | लिहा "नमस्कार" | console.log("नमस्कार") | | जर (x > 3) | if (x > 3) { | | अन्यथा | } else { | | जोपर्यंत (x < 5) | while (x < 5) { | | कार्य greet(नाव) | function greet(name) { | | प्रदत्त x * y | return x * y | | कार्य समाप्त | } | | आह्वान greet("प्रिय") | greet("प्रिय") | | सत्य | true | | असत्य | false | | पढा_फाइल "data.txt" | fs.readFileSync("data.txt", "utf-8") | | लिहा_फाइल "out.txt", "hi" | fs.writeFileSync("out.txt", "hi") | | प्रयत्न | try { | | दोष (error) | } catch (error) { | | त्यक्त "संदेश" | throw new Error("संदेश") | | घटना click = लिहा "ok" | click = function() { console.log("ok") } |


🚀 Features

  • Pure Marathi syntax for variable declaration, loops, conditions, and more.
  • Easy-to-use CLI tool for running .ms files.
  • Works without showing or mentioning JavaScript anywhere.
  • Beginner-friendly — learn programming in your own mother tongue.
  • File operations (read/write), error handling, and event handling in Marathi.
  • Created with ❤️ by Atikin Verse.

🔧 Installation

| Step | Command / Description | | -------------------------- | ------------------------------------------------------------ | | Clone the repository | git clone https://github.com/atikinverse/marathiscript.git | | Navigate to project folder | cd marathiscript | | Install globally | npm install -g . | | Run a MarathiScript file | marathiscript path/to/file.ms |


🏁 Getting Started

📌 Examples with Output

1️⃣ Hello World

लिहा("नमस्कार जग");

Output:

नमस्कार जग

2️⃣ Variables (let / const)

केवल नाव = "राम";
स्थिर वय = 25;
लिहा(नाव, वय);

Output:

राम 25

3️⃣ If-Else Condition

केवल वय = 20;

जर (वय > 18) {
    लिहा("प्रौढ");
} अन्यथा {
    लिहा("लहान");
}

Output:

प्रौढ

4️⃣ For Loop

पुन्हा (केवल i = 1; i <= 5; i = i + 1) {
    लिहा("गणना:", i);
}

Output:

गणना: 1
गणना: 2
गणना: 3
गणना: 4
गणना: 5

5️⃣ While Loop

केवल i = 1;

जोपर्यंत (i <= 3) {
    लिहा("क्रमांक:", i);
    i = i + 1;
}

Output:

क्रमांक: 1
क्रमांक: 2
क्रमांक: 3

6️⃣ Function Call

कार्य नमस्कार() {
    लिहा("नमस्कार जग!");
}
नमस्कार();

Output:

नमस्कार जग!

7️⃣ Array

संख्या = [1, 2, 3, 4];
लिहा(संख्या);

Output:

[1, 2, 3, 4]

8️⃣ Array Includes

केवल फळे = ["सफरचंद", "केळी", "संत्री"];

जर (फळे.असलेका("केळी")) {
    लिहा("केळी आहे");
} अन्यथा {
    लिहा("केळी नाही");
}

Output:

केळी आहे

9️⃣ Object Example

केवल विद्यार्थी = {
    नाव: "आकाश",
    वय: 22,
    शहर: "पुणे"
};

लिहा(विद्यार्थी.नाव, विद्यार्थी.शहर);

Output:

आकाश पुणे

🔟 Switch Case

// आठवड्याचा दिवस प्रिंट करणारा प्रोग्राम

दिवस = 3;

जर (दिवस == 1) {
    लिहा("सोमवार");
} अन्यथा जर (दिवस == 2) {
    लिहा("मंगळवार");
} अन्यथा जर (दिवस == 3) {
    लिहा("बुधवार");
} अन्यथा जर (दिवस == 4) {
    लिहा("गुरुवार");
} अन्यथा जर (दिवस == 5) {
    लिहा("शुक्रवार");
} अन्यथा जर (दिवस == 6) {
    लिहा("शनिवार");
} अन्यथा जर (दिवस == 7) {
    लिहा("रविवार");
} अन्यथा {
    लिहा("चुकीचा दिवस");
}

Output:

बुधवार

⚙️ Usage

Run MarathiScript file via CLI:

marathiscript path/to/file.ms

Example:

marathiscript examples/hello.ms

🔖 License

MIT License मध्ये दिले आहे.


🧑‍💻 Creator

Atikin Verse हृदयापासून तयार — केवळ शिक्षण आणि भाषाप्रेमासाठी ❤️


FOLLOW US ON For more information:

Join our social media for exciting updates, news, and insights! Follow us on :

| ACCOUNTS | USERNAME | |------------ | -------------- | | FACEBOOK | atikinverse | | INSTAGRAM | atikinverse | | LINKEDIN | atikinverse | | TWITTER (X) | atikinverse | | THREADS | atikinverse | | PINTREST | atikinverse | | QUORA | atikinverse | | REDDIT | atikinverse | | TUMBLR | atikinverse | | SNAPCHAT | atikinverse | | SKYPE | atikinverse | | GITHUB | atikinverse |


📬 Feedback / Suggestions

MarathiScript — मराठी भाषेत मजेदार प्रोग्रामिंग! 🚀