The Visual Programming Editor for Webduino.
Google's Blockly is a web-based, visual programming editor. Users can drag blocks together to build programs.
git clone https://github.com/webduinoio/webduino-blockly.git
cd webduino-blockly
npm install
bower install
npm run start
Navigate to http://127.0.0.1:8080 and start hacking!
You can use the code which generated by Webduino Blockly in your own application
Our APIs support both browser and Node.js, here's how you use it:
<!DOCTYPE html>
<html>
<head>
<title>Webduino</title>
</head>
<body>
<script src="//webduino.io/components/webduino-js/dist/webduino-all.min.js"></script>
<script src="webduino-blockly.js"></script>
<script>
// Paste the code generated by Blockly here.
</script>
</body>
</html>
Require the module first by:
require('webduino-blockly');
// ... The code generated by Webduino Blockly.
Webduino-Blockly is released under the MIT License.
Please read LICENSE for more information.