I am learning node.js (and express framework) & here is a basic newbie question about redis & node.js. How to pass redis data to templates? What should I correct in my script, so I could display the value of teststring in a template?
app.get('/', function(req, res){
res.render('index', {
test: redisclient.get("teststring"),
});
});
Thanks in advance!