Created
October 13, 2023 13:57
-
-
Save peterc/eacf1b80cd0db85192951715241f3491 to your computer and use it in GitHub Desktop.
Basic example of using import maps and TailwindCSS in a buildless fashion
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<!-- A totally pointless and overkill use of import maps | |
and Moment.js, in order to simply use the technology and | |
see it in action.. --> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Buildless example</title> | |
<link href="https://unpkg.com/tailwindcss@^2/dist/tailwind.min.css" rel="stylesheet"> | |
<script type="importmap"> | |
{ | |
"imports": { | |
"moment": "https://cdn.skypack.dev/[email protected]" | |
} | |
} | |
</script> | |
<script src="main.js" type="module"></script> | |
</head> | |
<body class="bg-gray-200 flex justify-center items-center h-screen"> | |
<div class="bg-white p-8 rounded-lg shadow-lg text-4xl w-1/2 text-center"> | |
<span id="time"></span> | |
</div> | |
</body> | |
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import moment from 'moment'; | |
function displayTime() { | |
const timeDiv = document.getElementById('time'); | |
timeDiv.innerHTML = moment().format('MMMM Do YYYY, h:mm:ss a'); | |
} | |
function doStuff(e) { | |
displayTime(); | |
setInterval(displayTime, 1000); | |
} | |
window.addEventListener("DOMContentLoaded", (e) => doStuff(e)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment