Quickstart guide to a working Site theme
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. We have a platform called application where you can configure permissions called access scopes and authorize different APIs. A private application that gives access to your store API only is called a custom application.
Get up a custom app right from your Ecwid admin on the app dashboard.
Step 3. Get access scope
With the app, you can access store data with API. However, you need to request additional permissions to build Site themes: add_custom_blocks and add_custom_templates.
Email us with your application name or client_id and required access scopes, so we can update the app for you.
Step 4. Initialize project files
Use CLI (Command Line Interface) to deploy the theme code to Ecwid. If your CLI doesn't yet support npm/npx commands, install the required package from the Node.js official website.
Please make sure that your local node version matches the minimum version required by the crane tool. Check the node and npm version by running the following commands:
We recommend using Node.js LTS version 22+ to ensure stability and avoid compatibility issues.
Crane is a CLI tool for developing Site themes. Learn more about the Crane tool
With Crane, you can run themes locally and control their deployment with CLI. 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?
