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

malayalam-language

v0.1.0

Published

Write code in Malayalam! Syntax highlighting, IntelliSense, and language support for the Malayalam programming language.

Readme

Malayalam Language Extension for Visual Studio Code

Version Downloads Rating

Write code in Malayalam! This extension provides comprehensive language support for the Malayalam programming language in Visual Studio Code.

Features

Syntax Highlighting

  • Full color-coded support for Malayalam keywords and syntax
  • Support for both Malayalam Unicode and Manglish (Latin transliteration)
  • Automatic detection of .ml files

💡 IntelliSense & Code Completion

  • Intelligent code completion for Malayalam keywords
  • Built-in function suggestions
  • Smart completion context awareness

📖 Hover Documentation

  • Hover over keywords to see quick documentation
  • Built-in reference for language features
  • Helpful tooltips for Malayalam syntax

🎯 Language Support

  • Automatic language detection for .ml files
  • Proper bracket matching and auto-closing
  • Smart indentation for code blocks
  • Comment support (line and block comments)

Quick Start

1. Create a Malayalam File

Create a new file with .ml extension:

കാണിക്കുക("ഹലോ, ലോകം!")

2. Enjoy Syntax Highlighting

The extension automatically highlights your Malayalam code with color-coded keywords.

3. Use IntelliSense

Press Ctrl+Space (or Cmd+Space on Mac) to see code completion suggestions.

4. Hover for Help

Hover over any Malayalam keyword to see quick documentation.

Language Features

Output Functions

  • കാണിക്കുക - Print output to console

Variables & Data Types

  • എണ്ണം - Numeric variable
  • പേര് - String variable

Control Flow

  • എങ്കിൽ - If condition
  • എന്ത് - For loop
  • എല്ലാം - While loop

Functions & Returns

  • ഫങ്ക്ഷൻ - Define a function
  • മടങ്ങി - Return statement

Boolean Values

  • സത്യം - True
  • കള്ളം - False

Code Example

// Factorial function
ഫങ്ക്ഷൻ factorial(n) {
  എങ്കിൽ (n <= 1) {
    മടങ്ങി 1
  }
  മടങ്ങി n * factorial(n - 1)
}

കാണിക്കുക(factorial(5))  // Output: 120

Keyboard Shortcuts

| Shortcut | Action | |----------|--------| | Ctrl+Space | Open IntelliSense | | Ctrl+Shift+/ | Toggle block comment | | Ctrl+/ | Toggle line comment | | Tab | Auto-indent line |

Configuration

Configure Malayalam language settings in VS Code settings.json:

"[malayalam]": {
  "editor.tabSize": 2,
  "editor.insertSpaces": true,
  "editor.wordWrap": "on"
}

Installation

From VS Code Marketplace

  1. Open VS Code
  2. Go to Extensions (Ctrl+Shift+X / Cmd+Shift+X)
  3. Search for "Malayalam Language"
  4. Click Install

From VSIX File

code --install-extension malayalam-language-0.1.0.vsix

Learn the Language

For complete language documentation, visit:

Try Online

Visit the Malayalam Language Playground to try the language in your browser without installation.

Troubleshooting

Extension not activating

  • Make sure your file has .ml extension
  • Reload VS Code window: Cmd/Ctrl+R
  • Check extension is enabled in Extensions view

Syntax highlighting not working

  • Verify Malayalam syntax definitions are loaded
  • Check VS Code version is 1.60 or later
  • Try reloading the window

IntelliSense not appearing

  • Press Ctrl+Space (or Cmd+Space on Mac)
  • Verify the file is recognized as Malayalam (check bottom right)
  • Check that you're using .ml file extension

Roadmap

🚀 Upcoming Features

  • [ ] Language Server Protocol (LSP) support
  • [ ] Debugging support
  • [ ] Code formatter
  • [ ] Linter integration
  • [ ] Code snippets
  • [ ] Theme support
  • [ ] Performance optimizations

Contributing

Found a bug? Have a feature idea? Contributions are welcome!

  1. Fork the repository
  2. Create a feature branch: git checkout -b feature/your-feature
  3. Make your changes
  4. Submit a pull request

See CONTRIBUTING.md for detailed guidelines.

License

MIT License - See LICENSE for details

Copyright (c) 2025 MalayalamLang Contributors

Support & Community


Made with ❤️ by the MalayalamLang Community