Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Handle Errors #39

Open
IsraaSulaiman opened this issue Jul 25, 2019 · 0 comments
Open

Handle Errors #39

IsraaSulaiman opened this issue Jul 25, 2019 · 0 comments

Comments

@IsraaSulaiman
Copy link

const handleHome = (request,response) => {
const homePath = path.join(__dirname, '..','public','index.html')
fs.readFile(homePath,(error,file) => {
if(error){
console.log(error);
}else{

handling error using console.log!!! 😞

if(error){
res.writeHead(404, {'Content-Type': 'text/html'}
res.end('<h1>Not Found</h1>');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant