All Projects → meemoo → Meemoo

meemoo / Meemoo

DEPRECATED, now modules are not made with iframes, see: https://github.com/meemoo/iframework/tree/master/src/nodes

Programming Languages

javascript
184084 projects - #8 most used programming language

DEPRECATED, now modules are not made with iframes, see: https://github.com/meemoo/iframework/tree/master/src/nodes



| |___ ___ _____ ___ ___ ||__ | | | | -| -| | . | . |_ | |_ -| ||||__|||||___|_||| |___| http://meemoo.org/ |___|

Use it something like this:

<script type="text/javascript" src="http://meemoo.org/meemoo/v1/meemoo-min.js"></script> <script type="text/javascript"> Meemoo .setInfo({ title: "example", author: "forresto", description: "example to show how to turn html into a Meemoo module" }) .addInputs({ square: { action: function (n) { Meemoo.send("squared", n*n); }, type: "number" }, reverse: { action: function (s) { var reversed = s.split("").reverse().join(""); Meemoo.send("reversed", reversed); }, type: "string" } }) .addOutputs({ squared: { type: "number" }, reversed: { type: "string" } }); </script>
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].