Simple, fast, and expressive. Built for CLI tools, automation, and scripting with clean syntax and practical modules.
# Simple JPX program [print] [color] global [name = "JPX"]; print color.green("Hello, $name!");
A modern scripting language designed for simplicity.
Simple and readable syntax inspired by modern languages, making it easy to learn and use.
Practical modules for HTTP requests, colored output, user input, and time operations.
Optimized for CLI tools and automation scripts with minimal overhead.
Created by alzzdevmaret ยท Indonesia
One version for all platforms
Download and install manually
Works on Windows 10/11
One-line installation
shogun install jpx
curl -fsSL https://jpx.dev/install.sh | sh
For Windows with WSL, macOS, Linux
jpx --version
jpx run main.jpx
Practical examples of JPX syntax
# Global variables global [name = "JPX"]; # String interpolation print "Hello, $name!";
[color] print color.red("Error"); print color.green("Success");
[requests] global [res = requests.fetch "https://api.example.com"]; print res.status;
[scanner] scanner.input "Name: "; global [name = scanner.read()]; print "Hello, $name!";
Connect with other JPX developers