Back to Home

Svelte Bridge

Native Svelte components with reactive image transformation and zero-config caching.

Direct API Integration

Dedicated Svelte SDK is coming soon. Use our high-performance API in the meantime.

const API_URL = "https://api.imgnodus.com/v1/upload";

Upload Example

<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>

Coming Soon: Advanced Features

We're working on automatic layout shift prevention and global state for image loading.

Auto-Blur placeholders
React Server Components support