Jaguar Programming Xtreme

JPX
A modern scripting language

Simple, fast, and expressive. Built for CLI tools, automation, and scripting with clean syntax and practical modules.

$ jpx run main.jpx
Read Docs
example.jpx
# Simple JPX program
[print]
[color]

global [name = "JPX"];

print color.green("Hello, $name!");

About JPX

A modern scripting language designed for simplicity.

๐Ÿ“

Clean Syntax

Simple and readable syntax inspired by modern languages, making it easy to learn and use.

๐Ÿ”Œ

Built-in Modules

Practical modules for HTTP requests, colored output, user input, and time operations.

โšก

Fast Execution

Optimized for CLI tools and automation scripts with minimal overhead.

Created by alzzdevmaret ยท Indonesia

Install JPX

One version for all platforms

๐Ÿ“ฆ

Manual Install

Download and install manually

1 Download the installer
2 Run the installer
3 JPX is ready to use

Works on Windows 10/11

QUICK
โšก

Shogun Install

One-line installation

shogun install jpx
curl -fsSL https://jpx.dev/install.sh | sh

For Windows with WSL, macOS, Linux

Version: v1.1 License: MIT

Verify Installation

jpx --version
jpx run main.jpx

Code Examples

Practical examples of JPX syntax

Variables & Print

# Global variables
global [name = "JPX"];

# String interpolation
print "Hello, $name!";

Color Output

[color]

print color.red("Error");
print color.green("Success");

HTTP Request

[requests]

global [res = requests.fetch 
    "https://api.example.com"];

print res.status;

User Input

[scanner]

scanner.input "Name: ";
global [name = scanner.read()];

print "Hello, $name!";

Community

Connect with other JPX developers

๐Ÿ™

GitHub

Source code, issues, contributions

โ˜… 0 stars โ‘‚ 0 forks
View on GitHub
๐Ÿ’ฌ

Discord

Chat, help, discussions

๐Ÿ‘ฅ 0 members ๐ŸŸข 0 online
Join Discord (Soon)
๐Ÿฆ

Twitter

Updates and announcements

๐Ÿ“ข 0 followers
Follow @jpx_lang