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

@converso-empire/conso

v1.0.2

Published

Conso - A modern multi-paradigm programming language by Converso Empire

Downloads

15

Readme

🧠 Conso Programming Language

A Product of Converso Empire

Build NPM Website License

"Empire of Innovation, Creativity & Intelligence."

WebsiteDocumentationGitHub


🌍 About Converso Empire

Converso Empire is a parent company that unites technology, creativity, and marketing under one vision. It serves as the umbrella brand for multiple specialized ventures — from AI to design to marketing — each focused on helping businesses and individuals thrive in the digital-first world.

Converso Empire is not just a group of companies; it is an ecosystem that blends next-generation AI solutions, cutting-edge design, powerful marketing strategies, and futuristic digital experiences.


🚀 About Conso

Conso is a modern, multi-paradigm programming language developed by Converso Empire. Written in TypeScript, Conso is designed to be intuitive, powerful, and accessible for developers of all skill levels.

Key Features

  • 🎯 Simple & Intuitive Syntax - Easy to learn, powerful to use
  • ⚡ Multi-Paradigm - Supports multiple programming styles
  • 🔧 TypeScript-Based - Built on modern, robust technology
  • 🌐 Cross-Platform - Works seamlessly across different environments
  • 📦 NPM Ready - Easy installation and integration

Version Information

  • Status: Stable Release
  • Maintained By: Converso Empire

💡 Why Choose Conso?

Conso represents the perfect blend of simplicity and power, designed by Converso Empire to meet the demands of modern software development:

  • Developer-Friendly: Intuitive syntax that reduces learning curve
  • Enterprise-Ready: Built with scalability and reliability in mind
  • Community-Driven: Open-source with active community support
  • Future-Proof: Regular updates and long-term support from Converso Empire
  • Versatile: Suitable for web development, automation, scripting, and more

📦 Installation

Quick Start

Install Conso globally via npm:

npm install -g @converso-empire/conso

Verify installation:

conso --version

🎯 Usage

Getting Started

1. Create a new file (hello.conso)

start conso
  conso print "Hello from Converso Empire!";
end conso

2. Run your program

conso hello.conso

3. See the output

Hello from Converso Empire!

Try Online

Experiment with Conso in our Interactive Playground — no installation required!


📚 Documentation


This will be ignored

start conso
// Write code here
end conso

This too

start conso
  conso a = 10;
  conso b = "two";
  conso c = 15;
  a = a + 1;
  b = 21;
  c *= 2;
end conso

start conso
  conso a = 10;
  conso b = 10 + (15*20);
  conso c = "two";
  conso d = 'ok';
  conso e = null;
  conso f = true;
  conso g = false;
end conso

start conso
  conso print "Hello World";
  conso a = 10;
  {
    conso b = 20;
    conso print a + b;
  }
  conso print 5, 'ok', null , true , false;
end conso

start conso
  conso a = 10;
  conso if (a < 20) {
    conso print "a is less than 20";
  } conso else-if ( a < 25 ) {
    conso print "a is less than 25";
  } conso else {
    conso print "a is greater than or equal to 25";
  }
end conso

start conso
  conso a = 0;
  conso while (a < 10) {
   a += 1;
   conso if (a == 5) {
    conso print "printing from inside loop: ", a;
    conso next;
   }
   conso if (a == 6) {
    stop conso;
   }
   conso print a;
  }
  conso print "done";
end conso

Development

For Contributors

Interested in contributing to Conso? We welcome contributions from the community!

Explore the AST:

Development Setup:

# Clone the repository
git clone https://github.com/Converso-Empire/conso.git

# Install dependencies
cd conso
npm install

# Build the project
npm run build

# Run tests
npm test

🤝 Community & Support

Get Help

Connect With Us


📄 License

Conso is released under the MIT License.

Copyright © 2025 Converso Empire. All rights reserved.


🌟 About Converso Empire

Converso Empire is a technology company focused on innovation, creativity, and intelligence. We build cutting-edge solutions that empower businesses and developers worldwide.

Our Ecosystem:

  • 🤖 AI Solutions - Next-generation artificial intelligence
  • 🎨 Design Services - Cutting-edge creative solutions
  • 📈 Marketing Strategies - Powerful digital marketing
  • 💻 Development Tools - Modern software solutions

Learn More: conversoempire.world


Made with ❤️ by Converso Empire

"Empire of Innovation, Creativity & Intelligence."

WebsiteGitHubDocumentation