When comparing Codelobster vs Gitpod, the Slant community recommends Codelobster for most people. In the question“What are the best IDEs for Node.js?” Codelobster is ranked 14th while Gitpod is ranked 16th. The most important reason people chose Codelobster is:
Including Laravel, Bootstrap. jQuery, WordPress, Drupal, Yii and so on.
Specs
Ranked in these QuestionsQuestion Ranking
Pros
Pro Advanced support for all popular frameworks
Including Laravel, Bootstrap. jQuery, WordPress, Drupal, Yii and so on.
Pro Special support for JQuery through the jQuery plugin
The jQuery support (when you install the jQuery plugin) is great. It adds function definitions so that autocomplete works as intended. Furthermore, the IDE knows about the logic of the different libraries and frameworks and can understand that $(this)
refers to a jQuery instance.
Pro Great HTML, CSS and JavaScript autocomplete
Codelobster has great HTML, CSS, JavaScript and PHP autocomplete
Pro Free version available
There is a free version available for download; it comes with a lot of features that you would find in an IDE.
Pro Portable option available
Codelobster IDE offers a lightweight, portable option.
Pro Hovering over a CSS property shows you which browsers are supported by that property
This is a really nice feature as it immediately shows you the browsers that support a certain CSS property. Of course, it does not beat actual testing, but it's still a nice feature that saves developers a lot of time.
Pro Customizable Workspaces
Gitpod workspaces are very customizable. You can define a workspace with .gitpod.yml
and define your own Dockerfile if you need tools that needs preinstalled automatically.
Pro Open Source to the core
Gitpod is a Web IDE product by TypeFox, which created Theia, a open source IDE framework. They rely on Kubernetes, Docker, Theia, and Let's Encrypt to provide this service - providing a 100% OSS-based SaaS.
Pro Workspaces are created from GitHub URLs
Any GitHub repository can be prepended with https://gitpod.io#
to define a Gitpod workspace. Here's an example of it.
Pro VNC Support
Gitpod has VNC support out of the box, which allows you to test Desktop apps within the cloud.
Pro Pre-authorized Git Client
This is the only GitHub-based Web IDE that pre-authorizes the git client, saving you time to do setup.
Pro GitHub Pull Request Issues Comments are viewable on the IDE
No need to jump tabs when making needed changes for your GitHub Pull Request. Gitpod supports viewing the comments and resolving those through the IDE - so you can resolve comments without ever needing to mark it resolved manually on GitHub.
Pro Automatic Configuration
If your GitHub repositories does not have a manifest to make a stack, Gitpod will attempt to make a stack based on what it understood about your codebase. However, for popular projects, a central repository on GitHub exists to configure a workspace automatically for them without the manifest file to be present.
Pro Language Server Protocol support
LSP is a standard made by Microsoft to create a single common core that can be consumed by a development tool. Theia is based on Visual Studio Code and supports LSP natively.
Cons
Con You need to sign up to get a free serial number for the free version
In order to use the free version of Codelobster, you have to sign up and get a free account. This is done to help stopping piracy, but it's still pretty jarring when all you want to do is install a program.
Con Expensive
For the Pro version (which includes all the available plug-ins), the cost is $99.95. The lite version (without plugins) is $39.95.
Con Does not create forks automatically for you
If you make a Gitpod workspace based on a GitHub repository you do not own, git push
will fail and you need to query the Git client to make the fork for you.
Con Can be slow on 3G Networks
The crux of this is because of the large bundle.js
that is needed to be transferred, this is a problem within Theia.
Con Packages can't be installed through the CLI
Gitpod doesn't support apt install
s yet due to the container mounting through an NFS. To alleviate this, you need to define a custom stack for your project if you need it.