Home

Awesome

<div align="center"> <img height="96" alt="Blade Logo" src="https://raw.githubusercontent.com/blade-lang/blade/main/blade.png"> </div>

Blade Programming Language

Build Status Gitter License Coverage Status Version

Blade is a modern general-purpose programming language focused on enterprise Web, IoT, and secure application development. Blade offers a comprehensive set of tools and libraries out of the box leading to reduced reliance on third-party packages.

Blade comes equipped with an integrated package management system, simplifying the management of both internal and external dependencies and a self-hostable repository server making it ideal for private organizational and personal use. Its intuitive syntax and gentle learning curve ensure an accessible experience for developers of all skill levels. Leveraging the best features from JavaScript, Python, Ruby, and Dart, Blade provides a familiar and robust ecosystem that enables developers to harness the strengths of these languages effortlessly.

Example

The following code implements a simple backend API that runs on port 3000:

import http

var server = http.server(3000)
server.handle('GET', '/', @(req, res) {
  res.json(req)
})

echo 'Listening on Port 3000...'
server.listen()

What's interesting about Blade

Showcase of other uses

While Blade focuses on Web and IoT, it is also great for general software development. Below are a few showcases of libraries using Blade for other impressive stuff:

Installation

To install Blade, please follow the instructions in the Building guide.

Usage

To start using Blade, please refer to the Tutorial section of the online documentation.

API Documentation

API documentation for Blade is under active development and can be found at bladelang.org.

Community

<!-- - Follow us on Twitter -->

Contributing

We need your help to make Blade great! The Blade community is as friendly and welcoming as possible. All kinds of contributions like pull requests, suggestions, typo fixes in documentation, feature request, bug reports, and others are highly appreciated. Please refer to the Contributing guide for more information.

License

Blade is licensed under the 2-clause BSDL License.