DEV Community

Cover image for Show us your open-source project!
Antonio | CEO at Litlyx.com
Antonio | CEO at Litlyx.com

Posted on

Show us your open-source project!

Hello everybody,

I'm Antonio, CEO at Litlyx.

A while ago, I made a post similar to this to give everyone a space to share their open-source projects and gain support from this amazing community.

I would love to host this kind of spot occasionally. So, here we go.

Follow this template to show us the open-source project you are working on right now.

  • Name: Litlyx
  • Repository on github: Link
  • Short Description: Litlyx is a developer-centric, open-source analytics tool. You can set up analytics in under 30 seconds. Completely self-hostable. All your data is beautifully displayed in an AI-powered dashboard.

Share your project in the comments section below.

Top comments (133)

Collapse
 
darkwiiplayer profile image
𒎏Wii 🏳️‍⚧️

Skooma (currently working on the 2.0 branch) is what I'm working on at the moment.

It's my attempt at a JS "micro"framework; so far there's a DSL for generating DOM nodes as well as an Observable class for reactive state management. The documentation and readme are still a bit behind the actual development, but they can give a general idea of how it works. There's also a website, but that's also still work in progress 😅

I'll probably write a proper introduction post once I'm happy with it and the API is somewhat stable.

Collapse
 
litlyx profile image
Antonio | CEO at Litlyx.com

Wow it seems super simple with your solution. Great job!

Collapse
 
empe profile image
Emil Pearce

Love it!

Collapse
 
elanatframework profile image
elanatframework
  • Name: CodeBehind Framework
  • Repository on github: Link
  • Short Description: CodeBehind is a modern back-end framework under ASP.NET Core. CodeBehind was developed by Elanat in 2023 and competes with Microsoft's default web frameworks (ASP.NET Core MVC and Razor Pages and Blazor).
Collapse
 
litlyx profile image
Antonio | CEO at Litlyx.com

Thanks for sharing your project. I started my programming journey as Game Developer in Unity so i learned C#. It has a lspecial place in my heart.

Great project! Keep up the good work.

Collapse
 
karthikmudunuri profile image
Mudunuri bhaskara karthikeya varma

Name: EldoraUI
Repository on github: Link
Short Description: Eldora UI is a collection of re-usable components that you can copy and paste into your web apps. It primarily features components, blocks, and templates geared towards creating landing pages and user-facing marketing materials.

Collapse
 
litlyx profile image
Antonio | CEO at Litlyx.com

This is amazing for real. Thanks for your work on this project. We will try to find something there to integrate some ui components you setted up in litlyx. Thanks for real. This is the amazing of hosting this panel. We can find so great project out there!

Collapse
 
karthikmudunuri profile image
Mudunuri bhaskara karthikeya varma

Thanks a lot @litlyx I would love to see your website integrated with eldora ui components. More updated and components coming soon!

Collapse
 
empe profile image
Emil Pearce

Looks like a fantastic resource for developers! Great job to the team behind it! By the way, do you have examples of those components connected to a backend?

It would be great to see how they work in a full-stack setup.

Collapse
 
karthikmudunuri profile image
Mudunuri bhaskara karthikeya varma

Will try to bring those components soon @empe

Collapse
 
paul_freeman profile image
Paul • Edited

Name: Awesome landing page
Repository on github: Github link
Short Description: A list of free and open-source landing page for SaaS, App landing pages, NGO, restaurants and more. New templates every Friday.

GitHub logo PaulleDemon / awesome-landing-pages

Free to use landing pages for SaaS developers, freelancers, agencies and businesses

Free Landing page templates

Contains free and open-sourced website templates, including but not limited to SaaS landing page, portfolio, Restaurant page and more. Useful, for freelancers, agencies, SaaS developers, and more.

Download from browsable page: awesome-landingpages.vercel.app/

Updated weekly

New templates will be uploaded every Friday. Feel free to star this repository 🌟.

Have a generic template in mind?

  • Create a new template issue, once your template request have enough thumbs up, we'll make one.

  • If you are looking for a custom one, contact here

Table of content

Collapse
 
litlyx profile image
Antonio | CEO at Litlyx.com

Love when people give so much value for free to other people. This is why FOSS is full of intresting individuals that help each other! Great

Collapse
 
empe profile image
Emil Pearce

Where were you all this time?!?!?! Amazing!

Collapse
 
misery666 profile image
Mishan Poudel

Name: Windows 11
Repository on github: Visit the website
Short Description: Experience the look and feel of Windows 11 directly in your browser with this web-based clone. Enjoy a similar user interface and functionality.

Collapse
 
litlyx profile image
Antonio | CEO at Litlyx.com

So intresting! Is cute

Collapse
 
misery666 profile image
Mishan Poudel

Thanks a lot! <3

Collapse
 
mahes profile image
Mahes R

File Explorer is cute. Give a try on recreating CASIO FX-880P pocket computer

Collapse
 
jwilliamsr profile image
Jesse Williams

Name: KitOps
Repository on github: Link
Short Description: Kit is an open source MLOps tool that packages AI projects into an OCI-compatible file type. Our goal is to help developers get their AI projects to production faster by turning something like a Jupyter Notebook into a deployable artifact, without standing up an AI/ML specific pipeline.

Collapse
 
litlyx profile image
Antonio | CEO at Litlyx.com

Wow! it seems a great idea. Keep going i will love to see your updates!

Collapse
 
jwilliamsr profile image
Jesse Williams

Thanks!

Collapse
 
artem1458 profile image
Artem Korniev • Edited
  • Name: Clawject
  • Repository on github: Link
  • Short Description: Clawject is a full-stack, type-safe (really type safe), declarative Dependency Injection framework for TypeScript that is build for developers convenience. It's built to avoid boilerplate unsafe code as much as possible.

GitHub logo clawject / clawject

TypeScript dependency injection made easy

Introduction 🚀

Clawject is a full-stack, type-safe, declarative Dependency Injection framework for TypeScript Clawject designed to make dependency injection and inversion of control in TypeScript as effortless clear and intuitive as possible. It allows defining class dependencies in a declarative way, without the need to use injection tokens or any other boilerplate, especially when it comes to interfaces and generics.

Check out Clawject website for more details and installation guide.


npm_version license Conventional Commits

Code with clawject

interface IRepository<T> { /*...*/ }
class RepositoryImpl<T> implements IRepository<T> { /*...*/ }
class PrimitivesService {
  constructor(
    private stringRepository: IRepository<string>,
    private numberRepository: IRepository<number>,
    private booleanRepository: IRepository<boolean>,
  ) {}
}
@ClawjectApplication
class Application {
  stringRepository = Bean(RepositoryImpl<string>);
  numberRepository = Bean(RepositoryImpl<number
Enter fullscreen mode Exit fullscreen mode
Collapse
 
litlyx profile image
Antonio | CEO at Litlyx.com

"really type safe" i loved it !! And i laughed a lot with this :)). I understand everything!
Thanks for sharing this valuable project.

Collapse
 
empe profile image
Emil Pearce

Sounds like a game-changer for TypeScript developers! Making dependency injection both declarative and convenient is no small feat, and it's impressive to see such dedication to enhancing developer experience.

Looking forward to exploring its features and seeing how it can streamline our projects. Great job on building something truly developer-friendly!

And it might be very relevant for us! :)

Collapse
 
artem1458 profile image
Artem Korniev

@empe Hey, I'm really glad that you're find this project interesting! Don't hesitate to reach out if you have any questions.

Collapse
 
tungbq profile image
Tung Leo • Edited

GitHub repo: github.com/tungbq/devops-basics
Description: 🚀 Practical and document place for DevOps toolchain to help everyone learn and practice DevOps.

If you find this repository helpful, kindly consider showing your appreciation by giving it a star ⭐. Thanks! 💖

Collapse
 
rahulmraut profile image
Rahul Raut

Awesome work. Worth sharing on LinkedIn

Collapse
 
tungbq profile image
Tung Leo

Thank you so much for the kind words

Collapse
 
litlyx profile image
Antonio | CEO at Litlyx.com

Really helpful to getting started with DevOps career. Great resource!

Collapse
 
tungbq profile image
Tung Leo

Thank you so much!

Collapse
 
punitsonime profile image
Punit Soni

Name: react-helper-hooks
Repository on github: github.com/PunitSoniME/react-helpe...
Short Description: Collection of hooks which developers can use in their projects and save time of writing them from scratch

Collapse
 
litlyx profile image
Antonio | CEO at Litlyx.com

Thanks for sharing your project with us!

Collapse
 
stefanwerfling profile image
Stefan Werfling

Name: FlyingFish
Repository on GitHub: Link
Short Description: FlyingFish is a reverse proxy manager with own WebUI, DNS server, SSH server, DynDNS, UPNP support, Lets Encrypt and much more.

Collapse
 
litlyx profile image
Antonio | CEO at Litlyx.com

I really love the concept of your project. I will show this to my CTO he would love to work with this software. You gain a shout out man!
PS: love the flying fish mascotte

Collapse
 
ujjwall-r profile image
Ujjwal Raj • Edited
  • Name: Dree (terminal based file manager)
  • Repository on Github: github.com/ujjwall-R/Dree
  • Short Description: One single package for visualization, debugging, and exploration of folder hierarchies. Dree is being developed into terminal based file manager(written in C++). Setup Dree on your mac or linux device and run dree [integer] -n to use it as a file manager.
Collapse
 
litlyx profile image
Antonio | CEO at Litlyx.com

Thanks for sharing this with us!

Collapse
 
chanity profile image
Trang Pham Quynh

Name: 𝐀𝐈 𝐁𝐮𝐢𝐥𝐝𝐞𝐫 𝐊𝐢𝐭
Repository on github: github.com/chanitypham/AI-Builder-Kit
Short Description: Create tailored AI tools that fit your unique needs and group them all in one hub. So you can centralize all your tools, share with friends, or monetize them.

If you guys like it, go give it a star on GitHub. Excited to hear your thoughts about this 😊

Collapse
 
litlyx profile image
Antonio | CEO at Litlyx.com

It seems a great project my man! Great job and keep working!

Collapse
 
vb64 profile image
Vitaly Bogomolov

Name: Markdown to pdf renderer
Repository on github: link
Short Description: The free, open source Python module markdown-pdf will create a PDF file from your markdown content.

Collapse
 
litlyx profile image
Antonio | CEO at Litlyx.com

Really useful!

Collapse
 
venki91 profile image
Venki
  • Name: Errsole

  • Repository on GitHub: github.com/errsole/errsole.js

  • Short Description: Errsole is a complete Node.js logger designed to collect, store, and visualize logs. A Node.js app using Errsole Logger can handle 90,000 more requests per minute than when using Elasticsearch and 70,000 more requests per minute than when using Amazon CloudWatch.

Collapse
 
litlyx profile image
Antonio | CEO at Litlyx.com

Thanks! This project can help a lot of developers out there!

Collapse
 
leew profile image
Wei Lee
  • Name: commitizen
  • Repository on github: commitizen
  • Short Description: Create committing rules for projects 🚀 auto bump versions ⬆️ and auto changelog generation 📂
Collapse
 
litlyx profile image
Antonio | CEO at Litlyx.com

Wow this i will try for sure! Seems a very well thoughts CLI experience. Thanks for sharing!