Getting started
Designing apps
Fundamentals
Platform concepts
Developing apps
Authenticating usersCreating app elementsCreating audio tracksCreating imagesCreating image overlaysCreating shapesCreating tablesCreating textCreating videosDesign editingEmbedding rich mediaExporting designsGrouping elementsLocalizationPositioning elementsQuerying contentReading elementsReplacing elementsSupporting drag and dropUploading assetsUsing color selectorsUsing design IDsUsing fonts
Resources
Securing apps
Monetizing apps
Distributing apps
Bundling apps
How to generate a JavaScript bundle for an app.
When you're ready to submit an app for review, you need to upload the app to the Developer Portal(opens in a new tab or window) as a standalone JavaScript bundle. The starter kit includes a build script that handles this for you.
How to generate a bundle
-
Navigate into the starter kit:
cd canva-apps-sdk-starter-kitBASH -
Run the following command:
npm run buildBASHAn
app.js
file will appear in thedist
directory.
How to upload a bundle
- Log in to the Developer Portal.
- Navigate to an app via the Your apps(opens in a new tab or window) page.
- Upload the
app.js
file to the App source > JavaScript file field.
Known limitations
- Canva doesn't support code-splitting, so all code and dependencies must be bundled in a single file. (You can still organize your code into separate files. The webpack configuration in the starter kit takes care of the bundling.)