<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="http://noder-js.ariatemplates.com/dist/master/noder.dev.js"></script>
<script type="application/x-noder">
var myButton = document.getElementById("myButton");
myButton.onclick = require("myModule").hello;
</script>
</head>
<body>
<button id="myButton">Click here</button>
</body>
</html>
This sample is a simple hello world demo of noderJS.
More information can be found at [noder-js.ariatemplates.com](http://noder-js.ariatemplates.com).
exports.hello = function () {
alert("Hello world!");
};