cryptochain
cryptochain copied to clipboard
Frontend Development Workflow
Hi, I'm following your Udemy course and got stuck at the "Frontend Development Workflow" video... When I added to my package.json the lines:

it is not responding and the local host 3000 is still not working the dev-client server takes over the comment line an still waits Parcel 1 updated to Parcel 2 maybe this is the problem?
Please help me :)
You can try killing the port and then restarting the server. For BASH, use:
kill $(lsof -t -i:3000)
This will kill the current process running on localhost:3000 and will help you start the server again
thanks! i will try it :)