Auto-detect links and render secure
Waiting for URL...
Drop a CDN script directly into your frontend to render embeds dynamically. Available in both uncompressed (.js) and compressed (.min.js) formats for high compatibility.
<script src="https://unpkg.com/embed-lite/dist/embed-lite.global.min.js"></script>
<script>
// Instantly renders the target URL directly into the browser DOM
const result = window.embedLite.embed("https://youtube...");
document.getElementById("my-div").innerHTML = result.html;
</script>
Or install securely via NPM for strictly-typed environments and Site Generators:
npm install embed-lite
import { embed } from 'embed-lite';
const { html } = embed('https://vimeo.com/...');