blockly-ps
v13.2.1-1
Published
Blockly is a library for building visual programming editors.
Readme
Blockly
Blockly is a web-based visual programming editor maintained by the Raspberry Pi Foundation. The Blockly editor uses interlocking graphical blocks to represent code concepts like variables, logical expressions, loops, and more. It allows users to apply programming principles without having to worry about syntax or the intimidation of a blinking cursor on the command line, and can automatically translate block-based programs into a variety of text-based programming languages like Python, Javascript and Lua. All code is free and open source.
Try a live demo, or browse the source code in the Blockly repo.
Example Usage
import * as Blockly from 'blockly/core';
Blockly.inject('blocklyDiv', {
...
})Plugins
A wide variety of plugins that add additional features and functionality to Blockly are available. All plugins are distributed via NPM; source code can be found in the Blockly Samples repo.
Installation
You can install Blockly either via npm or unpkg. Or, if you're starting an
entirely new project that uses Blockly, you can bootstrap it using our
create-package tool:
npm
npm install blocklyunpkg
<script src="https://unpkg.com/blockly/blockly.min.js"></script>When importing from unpkg, you can access imports from the global namespace.
// Access Blockly.
Blockly.thing;
// Access the default blocks.
Blockly.Blocks['block_type'];
// Access the javascript generator.
javascript.javascriptGenerator;create-package
npx @blockly/create-package app my-cool-blockly-app --typescriptImports
Note: Using import of our package targets requires you to use a bundler (like webpack), since Blockly is packaged as a UMD, rather than an ESM.
// Import Blockly core.
import * as Blockly from 'blockly/core';
// Import the default blocks.
import * as libraryBlocks from 'blockly/blocks';
// Import a generator.
import {javascriptGenerator} from 'blockly/javascript';
// Import a message file.
import * as En from 'blockly/msg/en';Requires
// Require Blockly core.
const Blockly = require('blockly/core');
// Require the default blocks.
const libraryBlocks = require('blockly/blocks');
// Require a generator.
const {javascriptGenerator} = require('blockly/javascript');
// Require a message file.
const En = require('blockly/msg/en');Loading messages
Blockly is translated into more than 100 different languages. Once you've imported or required the message file for the language you want to use as shown above, it needs to be applied:
Blockly.setLocale(En);Docs
For more information about how to use Blockly, check out our developer documentation.
Accessibility
Although Blockly is built around drag-and-drop, it is fully usable with the keyboard alone. Blockly is also accessible to screenreader users by default. We provide Accessibility Conformance Reports in the VPAT format that outline Blockly's conformance to WCAG 2.2 Level AA.
License
Apache 2.0
