I have just started studying node.js and express, the documentation of express on the home page is just too simple for me as a beginner.
for example,
app.configure('development', function(){
app.use(express.static(__dirname + '/public'));
...
});
It may seems very obvious to you, but I just wonder what express.static mean? I can't find an answer by searching Google.
This is just one example that I can't understand the code.
So is there any better documentation of express for the absolute beginner?