Performance

Guidelines for creating a fast-loading app.

The source code for an app is loaded as a single JavaScript bundle. As a result, any increase in the bundle size affects the initial load time. To reduce the bundle size, we recommend:

  • Being mindful of dependencies, which can add up quickly
  • Using a tool, such as Webpack Bundle Analyzer, to monitor the bundle size
  • Loading assets via URLs instead of importing them as data URLs

These days, you can run fairly intensive processes in the browser. Generally though, we recommend offloading these processes to a server. This ensures that performance is consistent across devices and isn't affected by the amount of memory available to the app's frontend at that particular moment.

To learn how to interact with a server, see Verifying HTTP requests.

Visual affordances, such as loading spinners, can improve the perception of performance. This may not be as satisfying as actually improving performance, but it's an important step.

To learn more about loading states, see Loading.

When working with images (or using our image-related libraries), we recommend using thumbnailUrl to define a smaller preview version of a full-size image. This lets you improve performance by loading a thumbnail instead of a full-size image, when required.

This example demonstrates how to define thumbnailUrl during an image upload process. To use this approach, you'll need to generate your own thumbnails and make them available in your storage backend.

You can then use the thumbnail in the object panel of the Canva editor, when the full-size image isn't required. The smaller size means that it'll load more quickly for the user, due to the reduced impact on network and compute resources.

import { upload } from "@canva/asset";
export const App = () => {
const importAndAddImage = async () => {
// Start uploading the image
const image = await upload({
type: "IMAGE",
mimeType: "image/jpeg",
// The full-size image:
url: "https://www.canva.dev/example-assets/image-import/image.jpg",
// The image thumbnail:
thumbnailUrl:
"https://www.canva.dev/example-assets/image-import/thumbnail.jpg",
width: 540,
height: 720,
});
typescript
  • thumbnailUrl: This thumbnail image can be rendered in the object panel of the Canva editor, and can also be used in the design canvas.
  • url: The full-size image that gets added to the canvas.
  • These URLS are fully-qualified paths that are subject to CORS controls.