I'm now taking this to the next level: Dojo themePreviewer stuck "Loading..."
I want to build a node.js application that will implement a lot of JSON routines, and also serve the Dojo/Diji/css files.
I tried this (where /student is my JSON):
var express = require('express');
var app = express();
app.use('/apps', express.static(__dirname + '/apps'));
app.use('/dojo', express.static(__dirname + '/dojo'));
app.use('/dijit', express.static(__dirname + '/dijit'));
app.get('/student', function(request, response){ ... etc... }
From the browser, I loaded: http://localhost:3000/apps/dojoThemeTester.html and the ThemeTester comes up and looks perfect.
But when I click on anything on it, such as a calendar date, or a tab, absolutely nothing happens.
Once that is working, my goal is to make a copy of dojoThemeTester.html, customize it, then use Ajax to call the JSON webservices in the same NodeJS app.