We rank vendors based on rigorous testing and research, but also take into account your feedback and our commercial agreements with providers. This page contains affiliate links. Advertising Disclosure
  1. Website Planet
  2. >
  3. Blog
  4. >
  5. Wix Velo: Can Developers Take It Seriously? 2024

Wix Velo: Can Developers Take It Seriously? 2024

Dale Cudmore Dale CudmoreWebsite Development Expert
If you’re a bit confused about what exactly Wix Velo is, you’re not alone. It took me a while to figure it out as well.

Velo is designed to let you add extra functionality to your Wix sites using JavaScript, to overcome the standard limitations of a site builder.

That’s something any developer would love – if it’s powerful enough and easy to use.

As a Wix developer like you, I should be able to give you a more human-friendly summary of what Wix Velo is, and help you figure out whether it will actually be useful to you.

What Exactly Is Wix Velo?

Wix Velo is the new version of Wix Corvid, which is the new version of Wix Code, renamed after a major overhaul of its features.

It adds an “open development, serverless platform,” built on Node.js, to your Wix sites.

I know, that’s quite a few buzzwords, so let me break it down in clearer terms.

When you enable Velo on your Wix sites, you still retain all the standard Wix editing features. Still, no HTML or CSS is needed.

However, you can also add scripts to the back- or front-end of your website, all while still in the Wix site editor. You can also create and view databases easily.

It allows you to interact with any third-party APIs, and you can even import many popular NPM modules (e.g., elasticsearch, mongodb).

The Advantages of Serverless Platforms

Serverless is the new marketing term for modern hosting.

If you’re not too familiar with it, a serverless framework basically means that Wix will take care of the server, so you only need to worry about telling it what code needs to be run.

Wix will take care of resource allocation on its cloud servers, and you don’t need to worry about security or maintenance.

So, that saves you a lot of time. Another nice benefit is that it’s easy to connect the back-end and front-end code of a serverless application.

Once you write your back-end scripts (still in the Wix editor), you can then make a simple call to them like you would for any other method (i.e., import x from y) in any of your front-end code.

5 Ways Wix Corvid Empowers Web Developers in 2024 [DETAILED]-image1

Activating Wix Velo on Wix Sites

Here’s a good time to note that Wix Velo is incompatible with sites built with the Wix ADI (artificial design intelligence) site builder.

If you have a site or client site that was built with ADI, you can convert it to the Wix “classic” editor if you’d like to enable Velo.

No installation is needed if you’d like to use Velo. All you need to do is find the “Velo” menu option along the top of the classic site editor and click the “Enable Velo” button.

5 Ways Wix Corvid Empowers Web Developers in 2024 [DETAILED]-image2

Once you do that, almost everything stays the same, but there are two main differences.

First, you’ll see a new sidebar with your site structure outlined that lets you switch between pages and code more easily.

5 Ways Wix Corvid Empowers Web Developers in 2024 [DETAILED]-image3

You can hide it if needed.

Second, there’s an IDE (integrated development environment) that you can pop up and down from the bottom of the screen to write your code in.

A Quick Note on Wix Velo Pricing

While the original Wix Code was intended to be a paid one, Wix Velo is offered as a free feature.

You can use it on any paid plan just like you would on the free plan.

What You Can Do With Wix Velo

Personally, I’m quite impressed with how easy it is to add custom functionality to websites with Velo.

Even if you can’t think of any ideas from scratch, Wix has done a great job with its Velo documentation.

There are tons of in-depth videos tutorials and coding examples that will help you get familiar with the platform.

There’s a mix of educational and tutorial videos. They walk you through how to do things like set up a database, use Velo APIs, and create custom interactions based on user behavior.

As for the coding examples, there are far too many to list here, but here some of the things you can learn how to do:
  • Let visitors search a database
  • Make advanced forms (e.g., multi-part, cascading, etc.)
  • Create custom dropdowns (like a checkbox dropdown)
  • Connect easily to a third-party API
  • Display your highest rated products
  • Create custom widgets (e.g., a weather widget)
Not only does each example page walk you through the code for each of these, but you can open it in the Wix editor to see the code in action.

5 Ways Wix Corvid Empowers Web Developers in 2024 [DETAILED]-image4

If you want to use any of them, you can just copy and paste the code. Much faster than writing it from scratch, of course.

How Do Velo’s Features Stack Up?

By now, you should have a good idea of why you might use Velo, and what it allows you to add to your site(s).

The last main concern you might have is about how easy is it to use, and whether there are any major limitations.

You’ll find the answers to those questions as we look through the features.

1. An Intuitive Embedded IDE

The IDE lives at the bottom of the site editor. You can pop it out with the icons above it:

5 Ways Wix Corvid Empowers Web Developers in 2024 [DETAILED]-image5

You can either expand it just a bit (shown above), or maximize it all the way, and it doesn’t look too different from Sublime or Atom:

5 Ways Wix Corvid Empowers Web Developers in 2024 [DETAILED]-image6

In my experience so far, it feels lightweight and smooth. You’re probably not going to be writing scripts big enough to cause any lag.

The IDE has a built-in linter to highlight coding issues, and autocomplete suggestions as you’re trying to grab an element on the page:

5 Ways Wix Corvid Empowers Web Developers in 2024 [DETAILED]-image7

The Velo API is extensively documented with the methods available on each type of Wix variable that you can select.

On top of all that, the IDE also:
  • Minifies CSS and JavaScript
  • Bundles JavaScript files
  • Transpiles JavasScript files to ES2015
No need to fiddle around with Webpack!

Overall, it’s a solid IDE, and I found no major issues with it. You can’t install extra plugins, but that’s about the only real limitation.

2. Simple Event Handling

When you click an element on your page, you’ll notice a new pop-up called “Properties,” which lets you specify whether or not to show it on load, and which events can be called on it.

5 Ways Wix Corvid Empowers Web Developers in 2024 [DETAILED]-image8

Choosing any event will let you name a method, and then add it to the IDE with boilerplate function code already added for you.

That’s about as convenient as it gets.

3. Fetch Any Third-Party APIs You Need

There are no limitations on what third-party APIs you can call.

You’ll make the calls just like you would in any JavaScript framework or library:

5 Ways Wix Corvid Empowers Web Developers in 2024 [DETAILED]-image9

4. Creating and Interacting with Databases

It takes only a few seconds to add a new database.

Depending on what features are enabled on your website, there may already be a few databases divided into categories:
  • Blog
  • Members
  • Stores
You can view all of these in the Velo sidebar:

5 Ways Wix Corvid Empowers Web Developers in 2024 [DETAILED]-image10

Again, it’s quite fast for lightweight data sets, although I haven’t tested it with millions of rows.

There are no limits on the number of databases you can have, or the number of rows in them.

You can either add data to them manually, import data, or add data from user input on your site.

In the IDE, interacting with your databases is as simple as querying any of them (e.g., wixData.query(‘Continents’)).

5. Roll-Out Versions

Finally, while it’s not exactly Git, Velo does offer its own version control — with a twist.

Not only can you create a new “release candidate,” but you can also push it to only a certain percentage of users.

5 Ways Wix Corvid Empowers Web Developers in 2024 [DETAILED]-image11

Instead of needing to deploy an update to all users, you have the flexibility to select the percentage of users you wish to present it to. This offers you a considerable amount of freedom for testing new features.

Short on time?
Take this one-minute quiz to learn which website builders are best for your project.
Find the Best Website Builder for Me >

Getting Support

If you run into issues with Velo, you can turn to the typical support channels on Wix (phone and email).

But your best bet, especially if you need help outside of business hours, is to turn to the Velo community forum.

5 Ways Wix Corvid Empowers Web Developers in 2024 [DETAILED]-image12

It’s quite active, and most replies are helpful. Occasionally, Wix staff developers pop in to try and help.

Is Wix Velo the Best Option for Building Sites?

There’s a bit of a stigma around developers using website builders.

Most website builders limit what you can do and only let you build cookie-cutter sites.

But Velo is a game-changer.

There really isn’t much I can think of that you could do with a site built from scratch that you couldn’t do with Velo.

In most instances, Velo could significantly reduce development time, particularly due to its incorporation of a serverless framework. This platform proves to be seamless, user-friendly, and remarkably robust.

Most importantly, it imposes very few limits on what you can do.

So if you aren’t sure if Velo is worth the time to learn and use, I can confidently recommend using it in the future.

If you don’t actually already use Wix and want to learn more about it, read our Wix expert review. Or, if you’re ready to get started with Wix, click the button below.


Sources

https://support.wix.com/en/article/about-release-candidate-versions

Rate this Article
4.4 Voted by 44 users
You already voted! Undo
This field is required Maximal length of comment is equal 80000 chars Minimal length of comment is equal 10 chars
Any comments?
2 comments
Reply
View %s replies
View %s reply
avatar
Jake
Reply
Hi Dale, great article! When you say, “You can't install extra plugins, but that's about the only real limitation” - what type of plugins are you referring to? I’m looking to really push the limits with Velo on Editor X, can you recommend a developer? Is there a way I can contact you directly? Thanks!
Reply
avatar
Website Planet Team
Thanks for your question, Jake. We'd recommend you speak to Wix tech support so they can help you with the specific plugin you want to use. As for a developer, we'd either recommend starting with Fiverr, as you'd be surprised how affordable it is to hire someone on the platform, or Toptal if you need a developer for a niche project - only the top 3% of developer talent is accepted onto the platform so you can guarantee they'll do a good job.
avatar
Hussain Badusha
Reply
Hi Thanks for your nice post for explaining What exactly Corvid is? But i got a question here. Does Corvid allows me to create an app and publish it in Wix App Market?
Reply
avatar
WebsitePlanet Team
Hi there, I'm glad you liked it! Wix Corvid only allows you to create apps and add custom code to your personal Wix site. Wix offers a different platform if you wish to create and publish apps on the Wix App Market, you can find it on their website. I hope this answers your question.
1
Read more reviews
Related posts
Show more related posts
We check all user comments within 48 hours to make sure they are from real people like you. We're glad you found this article useful - we would appreciate it if you let more people know about it.
Popup final window
Share this blog post with friends and co-workers right now:

We check all comments within 48 hours to make sure they're from real users like you. In the meantime, you can share your comment with others to let more people know what you think.

Once a month you will receive interesting, insightful tips, tricks, and advice to improve your website performance and reach your digital marketing goals!

So happy you liked it!

Share it with your friends!

Or review us on

574974
50
5000
101513
< Prev
 of 4
Next >
We recommend the following three website builders for your portfolio site
< Prev
Quiz results