html - script and CSS file not load in node JS? -
i unable load jquery , css file in node js
public javascripts stylesheets
i have html file read in server.js follow
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);
how load script , css file correctly.
Comments
Post a Comment