I am trying to learn how to use require.js. So I made an HTML page with the following tags in the body.
<script type="text/javascript" data-main="../js/shirt" src="../js/require.js"></script>
<script type="text/javascript">
alert("Shirt color is " + shirt.color);
</script>
The ../js/shirt.js has the following code
define({
color: "black",
size : "large"
});
How can I use this simple value pairs in my html?
require.jslike<script type="text/javascript" data-main="../js/shirt" src="../js/require.js"></script>rather than using browserify?