I am trying to learn how to use require.js. So I made an HTML page with the following tags in the body.
the contents of the main file should be a require call. for example, you have a values.js module containing:
define({
color: "black",
size : "large"
});
in your main file (shirt.js), load the values.js as a dependency (assuming they are in the same directory):
require(['values'],function(values){
//values.color
//values.size
});