UNPKG

hostr

Version:

A simple web server for the current working directory. Used for hello world style web sites hosting only files in current directory structure. Watches files and integrates with LiveReload.

15 lines (14 loc) 444 B
<html> <head> <script>document.write('<script src="http://' + (location.host || 'localhost').split(':')[0] + ':35729/livereload.js?snipver=1"></' + 'script>')</script> <link rel="stylesheet" href="main.css"> </head> <body> <h1>Hello world</h1> <p>Edit and save this html page to see LiveReload triggered.</p> <div id="timein"></div> <script> document.getElementById('timein').innerHTML = Date.now(); </script> </body> </html>