In this article we are going to talk about Blockly, a library to create visual programming languages. The user writes code using blocks and the softwa

Anybody Can Code With Blockly

submited by
Style Pass
2022-05-18 07:00:05

In this article we are going to talk about Blockly, a library to create visual programming languages. The user writes code using blocks and the software transpiles it to your traditional programming language of choice. It gives the power of programming to people without any experience in coding.

We are going to see how it differs from Scratch and you can use it to simplify programming for your users. In fact, in this tutorial we are going to create a simple language that any person can use.

If you just take a quick look at Blockly you might be forgiven for mistaking it for a clone of Scratch, the educational programming language based on blocks. Indeed, they look similar. However, there is a big difference between the two: Blockly is a JavaScript library, a tool; it is not a language.

There are also other differences. Scratch is primarily a programming language, and a platform, aimed at teaching programming to children between the ages of 8 and 16. Blockly is a library that brings a feature, visual programming, to any context you like.

Leave a Comment