脚本和CSS文件不加载在节点JS?

我无法加载节点JS中的jQuery和CSS文件

public javascripts stylesheets 

我有HTML文件,我读了在server.js如下

 http.createServer(function (req, res) { res.writeHead(200, { 'Content-Type': 'text/html' }); fs.readFile('Views/index.html', 'utf8', function (error, data) { if (error) { res.writeHead(404); res.write('file not found'); } else { res.write(data); } res.end() }); }).listen(port); 

如何正确加载脚本和css文件。