There have been a number of great projects to come about from the Zig community, despite being long before an actual release. This intrigues people like myself, who work in the software development industry for a living (current student myself, graduating next year) and have experience working with many libraries for multiple languages. However, a new language emerging with a lot of potential presents unique opportunities to become contributors, either to the project itself, or to the software that buds from the new language or framework when it finally does become usable in production.
Seeing as Zig is approaching the point where major changes to the language itself that would break existing code are highly unlikely, now seems to be an ideal time to begin learning and developing prototypes that could be used by many, should they be maintained and upgraded consistently. Some great projects I already bumped into include web server libraries, many game development tools, SIMD libraries, kernels, bootloaders, and a plethora of CLD tools. Seeing as a lot of these are experimental, I thought a discussion on Zig News could serve as a good way to connect and share ideas with one another for prototype projects that could become useful in the near future.
Game development is a big one it seems, but to branch off, what kinds of tools and libraries does the community believe are essential? What kinds of projects do you believe are going to be most popular with Zig? Seeing as the language seems to take a modern approach to issues in C (ex: functions with the same name, but different functions are not allowed in C outright. They often require "tricks" with preprocessors and includes to work), I'm expecting Zig to serve as a good C replacement for newer lower-level projects that require speed. The standard library intrigues me too. At the time of writing, I know it's on a backburner because the language is still in development and has to be stabilized.
To put it simply: What projects does community believe are missing from the Zig ecosystem that are going to be important to have?
Top comments (6)
There's a very long list for sure. Off of the top of my head:
From a more social perspective:
Also more talks for Zig SHOWTIME plz :^)
These are all really good suggestions!
Funny story: I checked to see if something like your idea for data structure implementations (the easiest option on the list in my opinion) already exists on GitHub, and it's strange..... I found that someone updated an old project with this purpose, that was inactive, for the first time in ages, following this post. I think we're being watched 👀
In all seriousness, I do wonder what the standard library will cover once the project is in the position to make a library that won't risk breaking during language development. If it's anything like .NET, it won't leave anything out haha.
Learning material and common applications and tools seem like my speed most of all, so I'll give it some thought! Thank you!
We don't know yet how the Zig standard library should look like, but we normally lean toward lean solutions (no pun intended). Regardless, in a low level programming language like Zig, there's a lot of space for different implementations of the same general data structure.
The standard library should be succinct but powerful, providing only a common and better solution, and users can implement their own solutions as they need. We don't want it to be bloated, but equally we don't want it to be spartan.
if
s, when you're comparing floats for equality, etc.A set of projects that come right off my head:
These are the topics that I have. I am working on 4 and 5 at the moment. So. lol