Last updated: Sep-12-2024
On this page:
Overview
Add asset upload capabilities to your SvelteKit app using the Cloudinary Upload widget. Learn how to install and configure the Upload widget, including how to make the widget work with the intricacies of a SvelteKit application.
Video tutorial
View the code
You can find the code from this tutorial in GitHub.Tutorial contents
This tutorial presents the following topics. Click a timestamp to jump to that part of the video.
Introduction to the Upload widget
0:05 | Cloudinary has many ways to upload files to your Media Library, enabling you to take advantage of Cloudinary's extensive features and capabilities. In a SvelteKit app you can use the Upload widget as a quick and easy way to provide a full upload experience. |
Add the Upload widget script to your SvelteKit app
0:31 | Start with a basic SvelteKit application and add the Upload widget JavaScript file. Paste the code, which you can find in the Upload widget documentation, into the <head> section of app.html. |
Add a new component for the Upload widget
1:21 | Add a new file called UploadWidget.svelte in src/lib/components in which you can create a component for the Upload widget. |
Initialize the Upload widget
2:12 | Use the createUploadWidget method to initialize the widget. Pass in your cloud name (which you can find in your Console Dashboard) and an unsigned upload preset. |
Create an upload preset
2:37 | In your Cloudinary Console, navigate to Settings > Upload > Upload presets to create a new unsigned upload preset. Make sure to change the Signing mode to unsigned, then save the upload preset. |
Create a callback function
3:06 | Create a new callback function to handle the response from the Upload widget. |
Add a button to open the Upload widget
3:24 | Render a simple button to open the Upload widget when clicked. |
Test it out
3:51 | Add the UploadWidget component to the main route then open the app in a browser. Click the button to open the Upload widget and upload a file to your Media Library. You can open the Media Library to see that it successfully uploaded. |
You can find the code used in this video tutorial in GitHub.
Keep learning
Related topics
- Read our Upload widget guide and reference, covering every available parameter option.
- Check out an Upload widget Sandbox that you can fork to try out some sample configuration changes.
- Watch more Dev Hints videos on the Cloudinary YouTube channel.
If you like this, you might also like...
Generate Upload Signature
Generate a timestamp and signature for a signed uploadUpload Widget
Embed an Upload Widget in your siteUpload with the CLI
Apply background removal to images on upload
Check out the Cloudinary Academy for free self-paced Cloudinary courses on a variety of developer or DAM topics, or register for formal instructor-led courses, either virtual or on-site.
✖️