Show HN: Daytona – Open-source dev env manager from a 15-year journey (github.com)
I'm Ivan Burazin, and for the past 15 years, I have been on a mission to streamline software development environments. Today, I'm excited to share the culmination of that journey: Daytona, an open-source Development Environment Manager designed to finally solve the issue of setting up dev environments, whether local or remote.
My journey in cloud development began in 2009 when my cofounder and I we launched the first (or at least one of) commercial Cloud IDEs, Codeanywhere. We developed everything in-house: the IDE, the orchestrator, and more. We garnered interest from over 2.5 million developers, and although it makes sense now, then we were ahead of our time.
Fast forward to today and remote development is commonplace, but the complexity of setting up environments has grown by a magnitude.
This is where Daytona comes in.
- What is Daytona?
Daytona is an open source, single-binary Development Environment Manager that lets you set up your development environment anywhere – local, remote, cloud – with a single command: ‘daytona create.’ It's free, flexible, and ready to use.
- Why Daytona?
*Simplicity*: Set up your dev environment with a single command. The only thing you need to need it to point to a repo and a target and Daytona automagicly does the rest.
*Flexibility*: Works on any machine, with any infrastructure.
*Open Source*: Fully transparent and community-driven.
- Getting Started:
We've made it super easy to try Daytona:
1. Download the single binary. 2. Run it on your machine – no signups, no emails, just straight to business.
We're excited to see how Daytona can streamline your development workflow. Try it out, push its limits, and let us know your thoughts, questions, and feedback right here.
GitHub: *https://github.com/daytonaio/daytona\*
I'll be around to discuss and answer any questions you have. Looking forward to ur feedback regardless.
Ivan Burazin Founder, Daytona
P.S.: For those who love the backstory and the technical journey, I've poured it all into a thread you can read here:
24 comments
[ 4.0 ms ] story [ 51.9 ms ] threadDaytona automates the creation of the development environment on any hardware, whether local or remote. It connects it to a local instance of VS Code (or to a browser if preferred), creates a VPN tunnel to the development environment, and adds a reverse proxy so you can share it as well.
Furthermore, it is acknowledged that an architecture diagram is missing, which would significantly aid in providing a clearer explanation. Efforts will be made to address this as soon as possible.
Or do u suggest we move this all the way up?
Thanks
I'm curious to know the source for this, it strikes me as odd. I wouldn't have put it anywhere close to even 5%, and it's hard for me to imagine how you would get there... maybe by counting containerization for dev purposes?
There are also other sources, and the numbers might vary, but it is quite a significant number in all reports.
Note: 'remote' does not mean 'cloud'; rather, it indicates that the development environments are not on localhost
Since we're talking about things no one asked, it would further inspire confidence -- and also help your CDN costs! -- if they fetched from your releases page <https://github.com/daytonaio/daytona/releases>; to the best of my knowledge GH offers a "latest" URL so one need not hard-code version numbers in the shell script and at the same time says "this binary was produced from this tag" which the current shell script for sure does not. It turns out $(./daytona version) does cough up the version number but it would be more obvious if it were fetched from a release/tag URL
Thank you for attending my talk :)
Patches welcome. I'm going to be taking a pass at this script and a powershell script tomorrow. We also want to eventually get past curl and into brew/winget but we wanted to balance that with getting something out the door.
If you like packaging and scripts and want to help out we've got https://github.com/daytonaio/daytona/issues/102 tracking this at the top level.
There is very light gray font against a white background.
For now all the info you need is on the readme, but working on docs as we speak.
https://www.youtube.com/watch?v=YVlcADaT94o
The sudo-curl-pipe-bash pipeline makes me raise an eyebrow, but otherwise this looks like a step up in ease from faffing about with DevPod. Then again I'm a command line guy all the way, and DevPod is more GUI centric which may play well with other hackers' sensibilities (but it has a hidden CLI of its own).
Regarding the pipeline, got it. I'm working on this and am glad you like the CLI-centricity of it.
I am experiencing the same ssh glitchiness that I did with DevPod. Full-screen applications such as Emacs and vim seem to newline randomly. I think this has to do with the fact that whatever Go ssh library is being used changes lf to crlf, if I recall correctly from my attempts to look into things with DevPod. So the ssh functionality is really only useful for running command line tools. The advertised VPN functionality appears to be missing.
The good news is that, unlike DevPod, whatever you're using for an ssh proxy plays nice with Emacs TRAMP mode. Overall, the UX is better than DevPod. I wish I had X11 forwarding or even a non-glitchy terminal, but it seems that the devcontainer ecosystem is set up to only really support Visual Studio Code.