Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/adrianliaw/meteor-blockly
Google Blockly In Meteor
https://github.com/adrianliaw/meteor-blockly
Last synced: about 1 month ago
JSON representation
Google Blockly In Meteor
- Host: GitHub
- URL: https://github.com/adrianliaw/meteor-blockly
- Owner: adrianliaw
- Created: 2015-10-05T09:47:43.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-10-06T11:57:47.000Z (about 9 years ago)
- Last Synced: 2023-05-24T20:50:17.782Z (over 1 year ago)
- Language: JavaScript
- Size: 114 KB
- Stars: 4
- Watchers: 5
- Forks: 1
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Google Blockly In Meteor
========================`meteor add blockly:blockly`
----------------------------This is a set of Meteor packages which wraps [Google Blockly](https://developers.google.com/blockly).
Usage
-----
`blockly:blockly` is the main and core package, it includes the blockly core. But only blockly "itself", without common blocks, code generators, etc.
You can use core blocks by adding `blockly:blocks`, which includes commonly used blocks such as `repeat n do ...`, `if ... do ...`.
By adding `blockly:javascript`, you'll be able to use the JavaScript code generator, which can turn your workspace into actual JavaScript code. Same for Python, Dart and PHP.Documentation
-------------
See [Blockly Project Page](https://developers.google.com/blockly)Developing
----------
1. Clone the repo, make sure to use --recursive `git clone --recursive https://github.com/adrianliaw/meteor-blockly`
2. Link the package to your local testing meteor app `ln -s {/path/to/this}/blockly {/path/to/testing/app}/packages/blockly:blockly`Roadmap
-------
I hope this package can take advantage of Blaze, wrap the original API, create reusable Blaze templates.