Answers for "html link to javascript file"

5

Error: listen EADDRINUSE: address already in use :::3000

sudo lsof -i :3000
Posted by: Guest on April-29-2020
0

Error: listen EADDRINUSE: address already in use

Find server pid:
	lsof -i tcp:5000 (the 5000 is the port number)
kill the server:
	kill -9 111119 (the 111119 is the pid)
Posted by: Guest on December-28-2020
27

how to link your js file to html

<script src="index.js"></script>
Posted by: Guest on March-08-2020

Code answers related to "html link to javascript file"

Browse Popular Code Answers by Language