Advertisement
Guest User

Untitled

a guest
Aug 24th, 2016
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. function renderHTML(path,response){
  2. fs.readFile(path,null,function(error,data){
  3. if(error){
  4. response.writeHead(404);
  5. response.write('file not found');
  6. }else{
  7. response.write(data);
  8. }
  9. response.end();
  10. })
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement