Documentation
Legacy Sandboxes
Embedding

Embedding

What is an Embed?

An embed enables you to include a running sandbox in your documentation, blog post, or website.

Browser sandbox embeds can be achieved using an iFrame or with Embedly support, which works for platforms like Medium, Reddit, Trello, and Notion. You can customize the embed to show just the code, the preview, or both at the same time.

Generate an Embed URL

You can generate a URL to embed by clicking 'Embed' in the header on the editor and selecting the options you want to have enabled.

Share Button

Embed on Medium

You can easily embed on Medium by taking your sandbox URL (like https://codesandbox.io/s/new (opens in a new tab)) and pasting it in a Medium article. It should automatically become an embed after you press enter.

Embed Options

The options shown in the embed modal are not all options available. We need a new UI for the share model to reflect these options, in the meantime you can find them here.

OptionDescriptionValuesDefault
autoresizeAutomatically resize the embed to the content (only works on Medium).0/10
codemirrorUse CodeMirror editor instead of Monaco (decreases embed size significantly).0/10
editorsizeSize in percentage of editor.number50
eslintUse eslint (increases embed size significantly).0/10
expanddevtoolsStart with the devtools (console) open.0/10
hidedevtoolsHide the DevTools bar of the preview.0/10
fontsizeFont size of editornumber (in px)14
forcerefreshForce a full refresh of frame after every edit.0/10
hidenavigationHide the navigation bar of the preview.0/10
highlightsWhich lines to highlight (only works in CodeMirror)comma separated list of line numbers
initialpathWhich url to initially load in address barstring/
moduleWhich module to open by default. Multiple paths comma separated are allowed, in that case we show them as tabspath to module (starting with /)entry path
moduleviewEvaluate the file that is open in the editor.0/10
previewwindowWhich preview window to open by defaultconsole/tests/browserbrowser
runonclickOnly load the preview when the user says so.0/10
viewWhich view to open by defaulteditor/split/previewsplit, preview for small screens
themeWhich theme to show for the embeddark/lightdark

Example Embeds

These are some examples of embeds, based on their properties.

Smallest Embed

This embed is focused on being as light as possible:

https://codesandbox.io/embed/new?codemirror=1

Use this code to embed:

<iframe
  src="https://codesandbox.io/embed/new?codemirror=1"
  style="width:100%; height:500px; border:0; border-radius: 4px; overflow:hidden;"
  allow="accelerometer; ambient-light-sensor; camera; encrypted-media; geolocation; gyroscope; hid; microphone; midi; payment; usb; vr; xr-spatial-tracking"
  sandbox="allow-forms allow-modals allow-popups allow-presentation allow-same-origin allow-scripts"
></iframe>

That will give to a result like this:


Code Example Embed

You can also use CodeSandbox to show code examples, with highlighted lines. This is only supported with the CodeMirror editor currently:

https://codesandbox.io/embed/new?codemirror=1&highlights=11,12,13,14

Use this code to embed:

<iframe
  src="https://codesandbox.io/embed/new?codemirror=1&highlights=6,7,8,9"
  style="width:100%; height:500px; border:0; border-radius: 4px; overflow:hidden;"
  allow="accelerometer; ambient-light-sensor; camera; encrypted-media; geolocation; gyroscope; hid; microphone; midi; payment; usb; vr; xr-spatial-tracking"
  sandbox="allow-forms allow-modals allow-popups allow-presentation allow-same-origin allow-scripts"
></iframe>

That will give to a result like this:


CodeSandbox has a separate application for the embed. This application is specifically built to be as small as possible. If you replace s in the URL of a sandbox to embed you have the embed version of the sandbox. Example: https://codesandbox.io/s/new (opens in a new tab) => https://codesandbox.io/embed/new (opens in a new tab). Notice that the embed doesn't have all of the features of the full editor.