Quickstart with a Site theme example
In the following guide, you’ll start by signing up with Ecwid and will end up with a fully working Site theme code deployed to your test store.
You need a good knowledge of Typescript and its Vue framework to build themes. Site themes are built locally and then deployed to the Ecwid environment. After deploying, you can find and install your theme in the website Editor. To apply any deployed changes, you need to reinstall the theme app.
Step 1. Sign up with Ecwid
To work with themes, you need a store and API access.
Start your journey by submitting a new dev form from the following link: https://portal.ecwid.com/en-us/app-market-request.
Specify that you are working on a theme, leave some contact details, and share some of your existing projects/apps here. Our App team will review the form shortly and contact you by email to give a free test store with API access.
Feel free to email us anytime.
Step 2. Set up an application
Working with Site themes requires authorization and access to Ecwid API. A platform called Ecwid application allows you to configure permissions called access scopes and authorize different APIs.
A private application with API access to your store data is called a custom application. Get a custom app right from your Ecwid admin on the app dashboard.
Step 3. Get access scopes
Default apps allow partial API access. However, to develop themes, the app needs additional permissions: add_custom_blocks and add_custom_templates.
App settings can only be changed on our side. Contact Ecwid API team, and we'll update your app in a business day or less!
Contact Ecwid API support teamStep 4. Initialize project files with Crane tool
Before diving into the Crane tool and setting up an example theme, you need to install Node.js: https://nodejs.org/en/download
We recommend using Node.js LTS version 22+ to ensure stability and avoid compatibility issues.
Crane is a CLI tool that allows you to build Site themes on a local machine and easily deploy them to Ecwid. Use the following commands to start your project:
Create a project folder, go into it, and install dependencies:
Initialize a new app inside the project folder (change
my-appwith your name for the app):
Go to the app folder, initialize the theme template code (change
example-templatewith your name for the theme):
Initialize the example section code(change
my-sectionwith your name for the section):
Now you have a project folder with all the required files and modules to start theme development.
Step 5. Set up a project in IDE
We recommend using the free VS Code application with Vue and TypeScript extensions. Open the project folder there and check the file structure inside. Learn more about the structure
First, you need to set up the crane.config.json file, it will connect the themes you build locally with the application on our side. Open it and copy the client_id and client_secret from your custom application to the file. Find these values at the bottom of the Ecwid admin > #develop-apps > Details page.
After the changes, your file should look like this:
Step 6. Deploy theme template to Ecwid
Once you are ready to check how your code works in the store, go into the project folder and use the following commands to preview and build the theme locally, then publish it to your Ecwid store:
You should see a success message in CLI. Email us with details about your application and store if you have any errors in this step.
Now you can find your custom theme in the website Editor in your Ecwid admin. Go to Settings > Themes in the top left Editor menu.
Next steps
Learn more about project structure and launching themes:
Build Site themes: Project structureLaunch Site themesLast updated
Was this helpful?
