Native Svelte components with reactive image transformation and zero-config caching.
Dedicated Svelte SDK is coming soon. Use our high-performance API in the meantime.
const API_URL = "https://api.imgnodus.com/v1/upload";
<script>
async function uploadToImgNodus(file) {
const formData = new FormData();
formData.append('file', file);
const res = await fetch('https://api.imgnodus.com/v1/upload', {
method: 'POST',
headers: { 'Authorization': 'Bearer YOUR_API_KEY' },
body: formData
});
return await res.json();
}
</script>
We're working on automatic layout shift prevention and global state for image loading.