CPP

Open-source projects categorized as CPP
C Python Cpp17 C++ Cpp20

Top 23 CPP Open-Source Projects

  1. project-based-learning

    Curated list of project-based tutorials

    Project mention: Is the software engineer the new farmer of the digital age? | dev.to | 2025-06-21

    Project-based learning — Explore the Project Based Learning repository

  2. SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
  3. awesome-cpp

    A curated list of awesome C++ (or C) frameworks, libraries, resources, and shiny things. Inspired by awesome-... stuff.

    Project mention: Supply chain attacks are exploiting our assumptions | news.ycombinator.com | 2025-11-06

    > The C (or other "old" lang) programs typically have very few dependencies

    Say what now? Have you ever worked on a project that uses C?

    We were using dependencies in C in the 1980s.

    Here's a more current list for C and C++: https://github.com/fffaraz/awesome-cpp

  4. leetcode-master

    《代码随想录》LeetCode 刷题攻略:200道经典题目刷题顺序,共60w字的详细图解,视频难点剖析,50余张思维导图,支持C++,Java,Python,Go,JavaScript等多语言版本,从此算法学习不再迷茫!🔥🔥 来看看,你会发现相见恨晚!🚀

  5. leetcode

    LeetCode Solutions: A Record of My Problem Solving Journey.( leetcode题解,记录自己的leetcode解题之路。) (by azl397985856)

  6. ImHex

    🔍 A Hex Editor for Reverse Engineers, Programmers and people who value their retinas when working at 3 AM.

    Project mention: Your hex editor should color-code bytes | news.ycombinator.com | 2026-04-23

    ImHex (https://imhex.werwolv.net/) is also a really nice Hex editor with tons of plugins (patterns, file support, etc.) and even an embedded language for adding more patterns easily

  7. ClickHouse

    ClickHouse® is a real-time analytics database management system

    Project mention: ClickHouse Pricing Teardown 2026 | dev.to | 2026-05-27

    Website: clickhouse.com

  8. CPlusPlusThings

    C++那些事

  9. Sunshine

    Self-hosted game stream host for Moonlight.

    Project mention: Fox to Buy Roku Streaming Service in $22B Deal | news.ycombinator.com | 2026-06-15

    If you already have a gaming desktop, I can recommend Shield for both. Streaming services work out of the box of course. Then I use Sunshine[1] on my desktop to stream to Moonlight on the Shield. Both have wired ethernet connections. Latency is not noticeable in most cases.

    [1]: https://app.lizardbyte.dev/Sunshine/

  10. aseprite

    Animated sprite editor & pixel art tool (Windows, macOS, Linux)

    Project mention: Making Graphics Like it's 1993 | news.ycombinator.com | 2026-06-09

    If you want to play with software rendering, here's probably the shortest code that will get an ARGB8888 2D array from main memory to the screen efficiently for all platforms using SDL2 in C https://gist.github.com/CoryBloyd/6725bb78323bb1157ff8d4175d... you'll need to do the translation from a 320x200x8-bit palletized framebuffer to ARGB yourself ;)

    If you want to get inspired by what can be done with palletized framebuffers check out http://www.effectgames.com/demos/canvascycle/ (click Show Options) and the GDC presentation by the artist https://youtu.be/aMcJ1Jvtef0

    With that you can fire up https://github.com/mriale/PyDPainter for that classic Deluxe Paint IIe vibe. Or, https://www.aseprite.org/ for something more modern.

  11. C-Plus-Plus

    Collection of various algorithms in mathematics, machine learning, computer science and physics implemented in C++ for educational purposes.

  12. openpose

    OpenPose: Real-time multi-person keypoint detection library for body, face, hands, and foot estimation

    Project mention: Mastering OpenPose Keypoint Detection: The Ultimate Guide | dev.to | 2025-10-08

    OpenPose GitHub Repository - Official implementation and examples

  13. carbon-lang

    Carbon Language's main repository: documents, design, implementation, and related tools. (NOTE: Carbon Language is experimental; see README)

    Project mention: Go: Support for Generic Methods | news.ycombinator.com | 2026-05-27

    I can't speak about Dart, but Carbon had just barely started development when it was first announced 4 years ago, and is currently presented as an experimental language that is not yet ready for use [0].

    0: https://github.com/carbon-language/carbon-lang#project-statu...

  14. shadPS4

    PlayStation 4 emulator for Windows, Linux, macOS and FreeBSD written in C++

    Project mention: Shadps4 – A Playstation 4 Emulator | news.ycombinator.com | 2025-08-16
  15. calculator

    Windows Calculator: A simple yet powerful calculator that ships with Windows

    Project mention: FFmpeg Assembly Language Lessons | news.ycombinator.com | 2025-08-18

    It's probably very hardware dependent now, just like it was back then. My calculator opens to interactive in much less than 1 second, but I've got a 9800x3d and fast memory and nvme drive. The other guy saying his start menu takes 8 seconds to open probably has a pretty shit computer.

    I definitely got the stupid hourglass in win 95 when trying to open anything, but my understanding of computers at the time was that black ones were faster than beige ones, so my computer was probably shit.

    I tried to look up calculator win 95 vids on YouTube, there are a couple. One gets an hourglass - but less than a second, one is instant, one shows the calculator crashing lol.

    During this I also found out that Microsoft Calculator is open source: https://github.com/microsoft/calculator

  16. dragonfly

    A modern replacement for Redis and Memcached

    Project mention: Opinion: Why Redis 8 Cluster Beats Memcached 1.6 for Scalable Apps | dev.to | 2026-05-05

    How does Redis 8 Cluster compare to Dragonfly (https://github.com/dragonflydb/dragonfly) for high-throughput caching workloads, and would you consider Dragonfly as an alternative to both Redis and Memcached?

  17. spdlog

    Fast C++ logging library.

    Project mention: Asynchronous backend on modern C++ 23. | dev.to | 2025-12-24

    ulog – logger inspired by spdlog build on top of uvent. Instead of using own thread spawns flushing coroutine.

  18. Vcpkg

    C++ Library Manager for Windows, Linux, and MacOS

    Project mention: My Battle with CI/CD - CMake, Windows, and Cross-Platform Pain | dev.to | 2025-11-14

    - name: Setup vcpkg and install libgit2 (Windows) if: runner.os == 'Windows' run: | git clone https://github.com/Microsoft/vcpkg.git cd vcpkg .\bootstrap-vcpkg.bat .\vcpkg install libgit2:x64-windows # This is redundant!

  19. solidity

    Solidity, the Smart Contract Programming Language

  20. modern-cpp-tutorial

    📚 Modern C++ Tutorial: C++11/14/17/20 On the Fly | https://changkun.de/modern-cpp/

    Project mention: Modern C++ Tutorial: C++ 11/14/17/20 On the Fly | news.ycombinator.com | 2026-05-28
  21. tinyrenderer

    A brief computer graphics / rendering course

    Project mention: Ask HN: What Are You Working On? (March 2026) | news.ycombinator.com | 2026-03-08

    I got this itch too when I came across tinyrenderer [1] and worked through the early lessons through shading, but didn't quite finish the texture mapping yet [2]. It was fun to work in pure C from first principles, even side-questing to write a simple TGA file reader and writer.

    I'd be very interested to see your tutorial when it's done!

    [1] https://haqr.eu/tinyrenderer

  22. {fmt}

    A modern formatting library

    Project mention: Floating-Point Printing and Parsing Can Be Simple and Fast | news.ycombinator.com | 2026-01-20

    It is possible to compress the table using the technique from Dragonbox (https://github.com/fmtlib/fmt/blob/8b8fccdad40decf68687ec038...) at the cost of some perf. It's on my TODO list for zmij.

  23. slint

    Slint is an open-source declarative GUI toolkit to build native user interfaces for Rust, C++, JavaScript, or Python apps.

    Project mention: Native all the way, until you need text | news.ycombinator.com | 2026-05-17

    If you are looking for something similar but not limited to C++, you can check Slint out: https://github.com/slint-ui/slint/

  24. modern-cpp-features

    A cheatsheet of modern C++ language and library features.

NOTE: The open source projects on this list are ordered by number of github stars. The number of mentions indicates repo mentiontions in the last 12 Months or since we started tracking (Dec 2020).

CPP discussion

Log in or Post with

CPP related posts

  • Datadog vs Dynatrace in 2026: Enterprise Observability Compared

    2 projects | dev.to | 13 Jun 2026
  • PGM-index:range searches, deletes, updates using orders of magnitude less space

    1 project | news.ycombinator.com | 10 Jun 2026
  • Adding 70-language translation to an image API without paying per word

    1 project | dev.to | 9 Jun 2026
  • Anthropic, please ship an official Claude Desktop for Linux

    14 projects | news.ycombinator.com | 7 Jun 2026
  • ConjureEnum: lightweight header-only C++20 enum and typename reflection

    1 project | news.ycombinator.com | 4 Jun 2026
  • Why I Started Building Vix.cpp

    1 project | dev.to | 3 Jun 2026
  • U++ – Cross-Platform App Development Framework

    1 project | news.ycombinator.com | 3 Jun 2026
  • A note from our sponsor - SaaSHub
    www.saashub.com | 15 Jun 2026
    SaaSHub helps you find the best software and product alternatives Learn more →

Index

What are some of the best open-source CPP projects? This list will help you:

# Project Stars
1 project-based-learning 265,608
2 awesome-cpp 71,717
3 leetcode-master 61,664
4 leetcode 55,758
5 ImHex 53,859
6 ClickHouse 47,973
7 CPlusPlusThings 43,216
8 Sunshine 37,922
9 aseprite 37,425
10 C-Plus-Plus 34,354
11 openpose 34,056
12 carbon-lang 33,803
13 shadPS4 31,370
14 calculator 30,955
15 dragonfly 30,630
16 spdlog 28,906
17 Vcpkg 27,161
18 solidity 25,658
19 modern-cpp-tutorial 25,430
20 tinyrenderer 23,696
21 {fmt} 23,575
22 slint 22,878
23 modern-cpp-features 21,750

Sponsored
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com

Did you know that C++ is
the 7th most popular programming language
based on number of references?