1 min readMay 31, 2018
As the error says, port 3000 is already in use. Go to app.js in backend and make sure you have this line of code on the end of your file
app.listen(8000, () => { console.log(‘Server running on http://localhost:8000’);});
As the error says, port 3000 is already in use. Go to app.js in backend and make sure you have this line of code on the end of your file
app.listen(8000, () => { console.log(‘Server running on http://localhost:8000’);});