CE.SDK can include assets from third-party libraries accessible via API. Search and browse images from an Airtable spreadsheet in the editor.

Prerequisites#
Before you begin, make sure you have the following:
- Airtable API Key – Get your API key from your Airtable account settings
- Node.js v20+ and npm installed locally – Download Node.js
- A supported browser – Chrome 114+, Edge 114+, Firefox 115+, Safari 15.6+
See Browser Support for the full list.
Get Started#
Create a new Nuxt.js application with Airtable Image Editor integration.
Step 1: Create a New Project#
npx nuxi@latest init your-project-name
cd your-project-namenpx nuxi@latest init your-project-name
cd your-project-namepnpm dlx nuxi@latest init your-project-name
cd your-project-namepnpm dlx nuxi@latest init your-project-name
cd your-project-nameyarn dlx nuxi@latest init your-project-name
cd your-project-nameyarn dlx nuxi@latest init your-project-name
cd your-project-nameStep 2: Clone the Starter Kit#
Clone the starter kit and copy the editor configuration to your project:
git clone https://github.com/imgly/starterkit-airtable-asset-source-react-web.git
cp -r starterkit-airtable-asset-source-react-web/app/imgly ./app/imgly
rm -rf starterkit-airtable-asset-source-react-webgit clone https://github.com/imgly/starterkit-airtable-asset-source-react-web.git
cp -r starterkit-airtable-asset-source-react-web/app/imgly ./app/imgly
rm -rf starterkit-airtable-asset-source-react-webnpx degit imgly/starterkit-airtable-asset-source-react-web/app/imgly ./app/imgly
npx degit imgly/starterkit-airtable-asset-source-react-web/public/assets ./public/assetsnpx degit imgly/starterkit-airtable-asset-source-react-web/app/imgly ./app/imgly
npx degit imgly/starterkit-airtable-asset-source-react-web/public/assets ./public/assetsStep 3: Install Dependencies#
Core Editor#
npm install @cesdk/cesdk-jsnpm install @cesdk/cesdk-jspnpm add @cesdk/cesdk-jspnpm add @cesdk/cesdk-jsyarn add @cesdk/cesdk-jsyarn add @cesdk/cesdk-jsAirtable Integration#
npm install airtablenpm install airtablepnpm add airtablepnpm add airtableyarn add airtableyarn add airtableStep 4: Download Assets#
curl -O https://cdn.img.ly/packages/imgly/cesdk-js/1.73.0/imgly-assets.zip
unzip imgly-assets.zip -d public/
rm imgly-assets.zipcurl -O https://cdn.img.ly/packages/imgly/cesdk-js/1.73.0/imgly-assets.zip
unzip imgly-assets.zip -d public/
rm imgly-assets.zipStep 5: Create the Editor Component#
Create a client-only Vue component using the .client.vue suffix (e.g., AirtableImageEditor.client.vue):
<script setup lang="ts">import { initAirtableImageEditor } from '~/imgly';import CreativeEditor from '@cesdk/cesdk-js/vue';
// Get your API key from your Airtable account settingsconst AIRTABLE_API_KEY = 'YOUR_AIRTABLE_API_KEY';
// Wrapper to pass API key to initializationconst initWithApiKey = (cesdk: any) => initAirtableImageEditor(cesdk, { airtableApiKey: AIRTABLE_API_KEY });</script>
<template> <CreativeEditor :config="{ baseURL: '/assets' }" :init="initWithApiKey" width="100vw" height="100vh" /></template>Save this file as components/AirtableImageEditor.client.vue to ensure it only renders on the client.
Step 6: Use the Component#
Import and use the component in your page:
<template> <AirtableImageEditor /></template>
<script setup lang="ts">import AirtableImageEditor from '~/components/AirtableImageEditor.client.vue';</script>SSR Error#
If you encounter the error window is not defined, it means the component is being rendered on the server. CE.SDK requires browser APIs and must run client-side only.
Use either the .client.vue suffix (shown above) or wrap the component with <ClientOnly>:
<template> <ClientOnly> <AirtableImageEditor /> </ClientOnly></template>Get Started#
Integrate the Airtable Image Editor into an existing Nuxt.js application.
Step 1: Clone#
cd your-projectcd your-projectClone the starter kit and copy the editor configuration:
git clone https://github.com/imgly/starterkit-airtable-asset-source-react-web.git
cp -r starterkit-airtable-asset-source-react-web/app/imgly ./app/imgly
rm -rf starterkit-airtable-asset-source-react-webgit clone https://github.com/imgly/starterkit-airtable-asset-source-react-web.git
cp -r starterkit-airtable-asset-source-react-web/app/imgly ./app/imgly
rm -rf starterkit-airtable-asset-source-react-webnpx degit imgly/starterkit-airtable-asset-source-react-web/app/imgly ./app/imglynpx degit imgly/starterkit-airtable-asset-source-react-web/app/imgly ./app/imglyThe imgly/ folder contains the editor configuration:
imgly/├── config/│ ├── actions.ts # Export/import actions│ ├── features.ts # Feature toggles│ ├── i18n.ts # Translations│ ├── plugin.ts # Main configuration plugin│ ├── settings.ts # Engine settings│ └── ui/│ ├── canvas.ts # Canvas configuration│ ├── components.ts # Custom component registration│ ├── dock.ts # Dock layout configuration│ ├── index.ts # Combines UI customization exports│ ├── inspectorBar.ts # Inspector bar layout│ ├── navigationBar.ts # Navigation bar layout│ └── panel.ts # Panel configuration├── index.ts # Editor initialization function└── plugins/ └── airtable.tsStep 2: Install Dependencies#
Core Editor#
npm install @cesdk/cesdk-jsnpm install @cesdk/cesdk-jspnpm add @cesdk/cesdk-jspnpm add @cesdk/cesdk-jsyarn add @cesdk/cesdk-jsyarn add @cesdk/cesdk-jsAirtable Integration#
npm install airtablenpm install airtablepnpm add airtablepnpm add airtableyarn add airtableyarn add airtableStep 3: Download Assets#
curl -O https://cdn.img.ly/packages/imgly/cesdk-js/1.73.0/imgly-assets.zip
unzip imgly-assets.zip -d public/
rm imgly-assets.zipcurl -O https://cdn.img.ly/packages/imgly/cesdk-js/1.73.0/imgly-assets.zip
unzip imgly-assets.zip -d public/
rm imgly-assets.zipStep 4: Create the Editor Component#
Create a client-only component using the .client.vue suffix:
<script setup lang="ts">import { initAirtableImageEditor } from '~/imgly';import CreativeEditor from '@cesdk/cesdk-js/vue';
// Get your API key from your Airtable account settingsconst AIRTABLE_API_KEY = 'YOUR_AIRTABLE_API_KEY';
// Wrapper to pass API key to initializationconst initWithApiKey = (cesdk: any) => initAirtableImageEditor(cesdk, { airtableApiKey: AIRTABLE_API_KEY });</script>
<template> <CreativeEditor :config="{ baseURL: '/assets' }" :init="initWithApiKey" width="100vw" height="100vh" /></template>Step 5: Use the Component#
<template> <AirtableImageEditor /></template>
<script setup lang="ts">import AirtableImageEditor from '~/components/AirtableImageEditor.client.vue';</script>Using Airtable Images#
The editor provides access to images stored in your Airtable database:
Via Dock Panel#
- Click the “Airtable” button in the dock (left sidebar)
- Browse images or use the search bar to find specific images
- Click any image to add it to your design
Via Replace#
- Select an image block in the editor
- Click “Replace” in the context menu
- Choose an image from Airtable to replace the current image
Set Up a Scene#
CE.SDK offers multiple ways to load content into the editor. Choose the method that matches your use case:
// Create a blank design canvas - starts with an empty design sceneawait cesdk.actions.run('scene.create');
// Load from a template archive - restores a previously saved projectawait cesdk.loadFromArchiveURL('https://example.com/template.zip');
// Load from an image URL - creates a new scene with the imageawait cesdk.createFromImage('https://example.com/image.jpg');
// Load from a scene file - restores a scene from JSONawait cesdk.loadFromURL('https://example.com/scene.json');Customize (Optional)#
Theming#
CE.SDK supports light and dark themes out of the box, plus automatic system preference detection. Switch between themes programmatically:
// 'light' | 'dark' | 'system' | (() => 'light' | 'dark')cesdk.ui.setTheme('dark');See Theming for custom color schemes, CSS variables, and advanced styling options.
Localization#
Customize UI labels and add support for multiple languages:
cesdk.i18n.setTranslations({ en: { 'libraries.airtable.label': 'My Images', 'actions.export.image': 'Download Design' }});See Localization for supported languages and translation key reference.
Key Capabilities#
Airtable Images
Access images stored in your Airtable database. Browse and search directly within the editor.
Professional Filters
Apply color grading with LUT filters, duotone effects, and customizable image adjustments.
Text & Typography
Add styled text with comprehensive typography controls, fonts, and visual effects.
Privacy-First
All processing happens locally in the browser. No data is sent to external servers.
Troubleshooting#
Editor doesn’t load#
- Check the container element exists: Ensure your container element is in the DOM before calling
create() - Verify the baseURL: Assets must be accessible from the CDN or your self-hosted location
SSR Error: “window is not defined”#
CE.SDK requires browser APIs and cannot run during server-side rendering. Use the .client.vue suffix or wrap your component with <ClientOnly>.
Airtable images don’t load#
- Check your API key: Ensure you have set a valid Airtable API key
- Check network requests: Open DevTools Network tab and look for failed requests
Watermark appears in production#
- Add your license key: Set the
licenseproperty in your configuration - Sign up for a trial: Get a free trial license at img.ly/forms/free-trial
Next Steps#
- Asset Source Plugins – Custom asset source configuration
- Configuration – Complete list of initialization options
- Serve Assets – Self-host engine assets for production
- Actions – Build custom export and save workflows