New

Introducing CodeSandbox CDE

Instant cloud development environments.

Learn more
arrow_back
Blog chevron_right Insights
Oct 22, 2018

What's Unique About CodeSandbox

I often get asked: "What's the difference between CodeSandbox and another online editor". This is a list of unique features that it has.

Ives van Hoorne
Ives van Hoorne
What's Unique About CodeSandbox

I often get asked: "What's the difference between CodeSandbox and another online editor?". I don't like getting these kinds of questions because:

  1. I am extremely biased, any answer or comparison I could give would be unfair to some extent.
  2. I like to work on unique things, comparing alternatives to what I build infers that what we're doing has already been done before. That demotivates me.

For the same reason I get demotivated when I hear people say that CodeSandbox is like any other online IDE. Saying something like that makes me feel that whatever we build wouldn't be noticed anyway.

That's why I decided to write down everything that I think are the defining big features of CodeSandbox, features that you cannot find in many other IDEs. This way I can always link to this post when someone asks me the question, without making a direct comparison.

Live Collaboration

A live session right after it was release, now we also added chat and the option to follow people along as they open different files.

When working on a sandbox you can open up a 'Live Session'. This generates a unique URL which you can give to others to join your sandbox and collaborate live (Google Docs style) together with you. As the owner of the sandbox you can also enable 'Classroom Mode', this mode allows you to specify who can edit the sandbox and who can only view. This is especially useful for workshops or situations where more than 30 people connect at the same time.

GitHub Committing/Forking/PRing

Here we create a PR to the Redux repo from within CodeSandbox

Besides importing from and exporting to GitHub we also allow you to work on a GitHub repo directly. When forking a sandbox that's imported from GitHub you can make changes and either create a PR or a commit with the changes when you're done. If you don't own the repository that's no problem, we automatically fork it for you and create a PR.

VS Code Integration

This is CodeSandbox(!)

Since recently we have an experimental feature (you can enable it in settings) called 'VS Code in the browser'. The name really says what it is, we have created a fork of VS Code that works in the browser. Because of this we get 'Grid View', 'Keybindings', 'User Snippets', 'Breadcrumbs', 'VS Code Settings' and more. You can copy your settings files directly from VS Code to CodeSandbox and we should have the exact same keybindings, snippets and preferences.

I want to clear up that this isn't only monaco-editor, but also parts of VS Code (like the previously mentioned features) that weren't ported to the browser yet.

Container Sandboxes

This is a Next server running in a CodeSandbox Container, you can run bash, scripts, etc.

Another recent addition is Container Sandboxes. Previously we would run a sandbox in the browser. This works great for many sandboxes, but imposes a limitation on what you can run. With Container Sandboxes we actually run the code on a server, this makes it possible to eg. create a Node/GraphQL server on CodeSandbox. It also opens up the possibility to create Next.js/Gatsby/Nuxt.js projects inside CodeSandbox. It runs anything that works locally.

Dashboard & Teams

Everyone has a dashboard that they can organize their sandboxes in. In this dashboard you can create directories (like Google Docs) to categorize your sandboxes. You can also search, filter and sort the sandboxes whenever you need to find a specific sandbox. We show a screenshot of every sandbox so you can visually filter them.

Another feature of the dashboard is the option to create teams. As a team you can share ownership of sandboxes and work on them together. There is no limit to team sizes and whenever multiple people from a team open the same sandbox we automatically create a live session.

Beginner Friendly Tricks

There is a raw import here, we give the suggestion to rename the file.

We try to make CodeSandbox useful for people wanting to learn web development. That's why we show error suggestions for some errors (like 'Add Missing npm Dependency' or 'Rename App to App.js'). For known configuration files we show a UI and description.

We also have a search page, on this page you can search for sandboxes (850.000 at the time of writing) when you need to find any examples. You can filter on dependency, on template and on tags to make it easier. If you, for example, ever want to know how redux is used you can filter on that dependency and shift through the examples sandboxes.

Deploy Sandboxes

Deploy with the big button

We have a deployment integration with Vercel. When you want to create a production version of your sandbox you can click 'Deploy with Vercel'. This will deploy the sandbox, install the node_modules and start it under a new URL. We then give this URL back which you can alias to any domain that you like.

We are also adding support for other deployment providers in the near future!

Smaller Factors

These are the features that I think are worth mentioning, but don't deserve a header of their own.

Private/Unlisted Sandboxes

As a Patron you can create sandboxes that are either private (not viewable apart from you/your team) or unlisted (not viewable from search) sandboxes.

Jest Support

We have support for running Jest tests and have a small dashboard for it where you can manage the tests and control them.

We're Open Source!

The frontend and the microservices of CodeSandbox are open source! This is the place where you can find out how CodeSandbox works. We currently have 97 contributors and are always welcoming more!

Conclusion

This is a list of things that you can do with CodeSandbox, but I don't think this truly defines us. I think our values, our drive and our 'out of the box'-thinking is what produced all these features, and will certainly define what we'll be able to make in the coming years. I really can't wait to see what the future holds and I'm looking forward to work on this online editor as long as I can.

These features are not only built by myself, we now have a big group of people working on CodeSandbox. I want to thank Bas, Bogdan, Sara, Christian for their work, and also a big thanks to the other 93+ contributors who have added features, documentation and support! If you're interested in helping us out, this is our repository with the most activity!



Keep reading about Insights .

Why I Code in the Cloud
Insights Jan 23, 2024

Why I Code in the Cloud

Development is moving to the cloud. Here’s why this is a game-changer for teams.

Insights From the First Annual CDE Report
Insights Nov 30, 2023

Insights From the First Annual CDE Report

Diving into the current adoption, challenges, and growth perspectives of cloud development environments (CDEs).

Celebrating Hacktoberfest With Tips for Open Source
Insights Oct 16, 2023

Celebrating Hacktoberfest With Tips for Open Source

CodeSandbox engineers share their tips on contributing to open source while having fun at it.

A Deployment Preview for Every Branch
Insights Aug 17, 2023

A Deployment Preview for Every Branch

Why wait on the staging queue when you can get a dedicated preview environment for every branch?