Git Product home page Git Product logo

blade's Introduction

Blade Logo

The Blade Programming Language

Quick links: CI | Building | Contributing | Documentation | License


tl;dr

Blade is a simple, fast, clean and dynamic language that allows you to develop applications quickly. Blade emphasises algorithm over syntax and for this reason, it has a very small but powerful syntax set with a very natural feel. Blade builds upon the best features of JavaScript, Python and Ruby to give developers a familiar and powerful system that feels native for developers coming from any of these languages and an easy way to leverage the strength of any.

Distinguishing Features

  • Simple syntax and minimal keywords.
  • First-class package management (Package management is built into the language module system).
  • Iterable classes.
  • Easy to extend with C modules with a familiar API to Wren.

Example

The following implements a simple HTTP server that listens on port 3000.

import http
import json

var server = http.server(3000)
server.on_receive(|request, response| {
  response.headers['Content-Type'] = 'application/json'
  response.write(json.encode(request))
})

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

Why should I use Blade?

If you fall into one of more of these categories or have one of the following needs, then Blade is the right language for you.

  • You want a language with a very minimal learning curve (easier to learn than Python).
  • You want Python's simplicity but love coding with braces and other things C-like.
  • You want a language with first-class support for package management.
  • You need a quick script for automating mundane tasks on your device.
  • You need a language that allows fast prototyping.
  • You want to do backend development without needing to depend on a framework.
  • You want a familiar language that can be embedded into your application that's more extensive than Lua.

There are many more use-cases where Blade is a great fit. This is just the bare minimal.

Documentation

Documentation is currently in-progress in the blade-docs repo. You can read the Blade language documentation online at bladelang.com.

C Extensions to Blade

Blade supports external extensions built in C. While the website is yet to include documentation on writing C extensions, there is an easy-to-pick-up example in the blade-ext-demo repository and many more in the packages directory.

Directory Structure

Directory Contents
benchmarks Contains the sample benchmarks for Blade (some are based on the Benchmark games).
libs Contains the Blade standard library.
packages Contains the Blade standard library members built as packages because they depend on other open-source tools.
src The source code of the Blade language including the native implementation of some Blade library classes and functions in the modules directory.
scripts Helper scripts for various uses such as automated installation.
tests A few test cases that Blade implementation must pass.
thirdparty Contains open-source libraries and packages used by Blade.

How to contribute

Along with Blade's goal to be simple, flexible and expressive is a strong desire to make the community around it as friendly and welcoming as possible. Therefore, all forms of contributions from pull requests, suggestions, typo fixes in documentation, feature request, bug reports and any contribution at all is greatly welcomed and appreciated.

WE NEED HELP! From review of this documentation, to suggestions on the core features of Blade, testing of Blade features, writing more comprehensive tests, bug detection, code fixes and more. PLEASE CONTRIBUTE!

Contributing code, fixes and features

The standard. The general workflow is as follows.

  1. Find/file an issue on the Issues tab.
  2. Fork the repo and make your changes.
  3. Push your changes to a branch in your forked repo.
  4. Submit a pull request to Blade from your forked repo.

You can also just mail your issues to Ore Richard Muyiwa directly.

Coding Standard

  • I decided to break from the popular camel case common to C style languages and went with snake cases. Honestly speaking, the only justifiable reason is because I think it looks cool. I know you may have a differing opinion, but I will really appreciate it that you keep to that in your PRs. I used this same style for both the C source and the core library.

  • For formatting, simply follow the LLVM guide minus the whole braces {/} on separate line thing. It looks really ugly. I advise you use the JetBrains CLion or Visual Studio Code IDE(s) to format your code before submitting for PR.

It's that simple!

blade's People

Contributors

brian3647 avatar galexite avatar mcfriend99 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.