🌐
GitHub
github.com › p12tic › cppreference-doc
GitHub - p12tic/cppreference-doc: C++ standard library reference · GitHub
This is source package for Cppreference C++ standard library reference documentation available at http://en.cppreference.com.
Starred by 478 users
Forked by 123 users
Languages   HTML 60.5% | Python 16.2% | JavaScript 11.0% | CSS 8.2% | PHP 2.8% | Makefile 0.7%
🌐
GitHub
github.com › PeterFeicht › cppreference-doc
GitHub - PeterFeicht/cppreference-doc: C++ standard library reference · GitHub
This is the source package used to build the offline archive for the Cppreference C++ standard library reference documentation available at http://en.cppreference.com.
Starred by 832 users
Forked by 58 users
Languages   HTML 60.4% | Python 16.3% | JavaScript 11.0% | CSS 8.2% | PHP 2.8% | Makefile 0.7%
🌐
GitHub
github.com › Cyp9715 › CppReference
GitHub - Cyp9715/CppReference: Personal Use Library. · GitHub
Personal Use Library. Contribute to Cyp9715/CppReference development by creating an account on GitHub.
Author   Cyp9715
🌐
GitHub
github.com › topics › cppreference
cppreference · GitHub Topics · GitHub
July 2, 2022 - cppreference.com html archive converter to microsoft help (for Visual Studio 2012+) and chm help (for Windows)
🌐
GitHub
github.com › myfreeer › cppreference2mshelp
GitHub - myfreeer/cppreference2mshelp: cppreference.com html archive converter to microsoft help (for Visual Studio 2012+) and chm help (for Windows) · GitHub
cppreference.com html archive converter to microsoft help (for Windows Visual Studio 2012+) and good old .chm help (for any Windows and even some other platforms)
Starred by 1.2K users
Forked by 181 users
Languages   CSS 60.0% | PHP 21.1% | Shell 13.9% | Python 3.9%
🌐
GitHub
github.com › std-microblock › cpp-reference-refined
GitHub - std-microblock/cpp-reference-refined: Make cppreference.com Great Again.
Make cppreference.com Great Again. Contribute to std-microblock/cpp-reference-refined development by creating an account on GitHub.
Author   std-microblock
🌐
GitHub
github.com › jeaye › stdman
GitHub - jeaye/stdman: Formatted C++20 stdlib man pages (cppreference) · GitHub
Formatted C++20 stdlib man pages (cppreference). Contribute to jeaye/stdman development by creating an account on GitHub.
Starred by 994 users
Forked by 52 users
Languages   C++ 82.2% | Shell 9.3% | Python 4.8% | Makefile 3.7%
🌐
GitHub
github.com › cppreference-md › cppreference
GitHub - cppreference-md/cppreference
Contribute to cppreference-md/cppreference development by creating an account on GitHub.
Author   cppreference-md
🌐
GitHub
github.com › p12tic › cppreference-doc › blob › master › README.md
cppreference-doc/README.md at master · p12tic/cppreference-doc
This is source package for Cppreference C++ standard library reference documentation available at http://en.cppreference.com.
Author   p12tic
Find elsewhere
🌐
Jbms
jbms.github.io › sphinx-immaterial › apidoc › cpp › cppreference.html
Automatic cross-linking to cppreference.com - Sphinx-Immaterial
This theme provides an optional sphinx_immaterial.apidoc.cpp.cppreference extension that provides automatic linking to C/C++ standard symbols documented at https://cppreference.com.
🌐
GitHub
github.com › guyutongxue › VSC_CppReference
GitHub - guyutongxue/VSC_CppReference: View C++ Reference in VS Code
View C++ Reference in VS Code. Contribute to guyutongxue/VSC_CppReference development by creating an account on GitHub.
Starred by 27 users
Forked by 9 users
Languages   TypeScript 100.0% | TypeScript 100.0%
🌐
GitHub
github.com › ewuc › cppreference-HTML-Help › blob › main › README.md
cppreference-HTML-Help/README.md at main · ewuc/cppreference-HTML-Help
Send any questions or comments to the project page on github GitHub · Download branch you want, for example 20190607 coresponds to offline copy of HTML book version html_book_20190607.zip · Download offline copy of HTML book from https://en.cppreference.com/w/Cppreference:Archives
Author   ewuc
🌐
Reddit
reddit.com › r/cpp › built a static c++ reference site on top of cppreference
r/cpp on Reddit: Built a static C++ reference site on top of cppreference
March 3, 2026 -

I've been experimenting with different ways to navigate C++ reference material and ended up building a static reference site on top of the cppreference offline dump: https://cppdocs.dev

This is NOT a replacement for cppreference. All core reference data comes from it, this is more of a usability/navigation layer.

Things I added:

  • Version filtering (C++11 → C++26)

  • Fully static, minimal JS

  • Fast static search

  • Task-oriented entry points (Ranges, Algorithms, Headers, etc.)

  • Domain-based browsing (memory model, concurrency, compile-time stuff)

  • Built-in bookmarks

  • Spotlight-style page switcher

  • Optional vim-style keybindings (gg, etc.)

The main problem I kept running into was knowing rougly what I needed but not remembering the exact name or header. Cppreference is fantatsic but can feel like a raw dump sometimes. This is an experiment in adding more structure and cross-linking to make it easier to explore

Content is Markdown-first, contributions are just simple PRs. Version metadata comes from cppreference so it's not perfect everywhere yet.

Broken pages, missing stuff, confusing summaries --> issues and PRs welcome.

Repo: https://github.com/cppdocs/cppdocs Hosted on GitHub Pages.

Top answer
1 of 5
61
cppreference is dying. It has been in read-only state for about a year, and the sole maintainer may or may not get to properly updating it in the future. We need some new project that forks cppreference material, hosts on Github pages and allows further contributions via commits. This specific project in its current state, though, is far from being able to take on the role of a successor. Was it converted from cppreference material? Pages are highly incomplete compared to cppreference, looking at e.g. std::optional.
2 of 5
17
Personally, I prefer the layout/formatting of cppreference, but I do appreciate the effort to make the presentation more approachable for newer developers. I'm sure there's a happy medium somewhere. There are a few issues I noticed while looking around: The code examples use the ≠ character instead of !=. Many of the page layouts are broken on mobile. There does not appear to be a link to most of the algorithms in the std::ranges namespace from your algorithms page. The pages for standard library headers are basically empty. Many places where hyperlinks appear in cppreference are plaintext here. From the std::ranges::contains page: "Up until C++20, we’ve had to write std::ranges::find(r, value) != std::ranges::end(r) to determine if a single value is inside a range." This implies the range algorithms were around before C++20. Switching to light theme doesn't affect code blocks. Flagship changes in the language versions aren't consistent about listing the class or the associated header. Keyword index and compiler support pages are empty. I can't find any information on the site about how to contribute. Not saying all this to be mean. This seems like a great effort for the community to rally behind.
🌐
GitHub
github.com › PeterFeicht › cppreference-doc › releases
Releases · PeterFeicht/cppreference-doc
February 9, 2025 - C++ standard library reference. Contribute to PeterFeicht/cppreference-doc development by creating an account on GitHub.
Author   PeterFeicht
🌐
GitHub
github.com › p12tic › cppreference-doc_debian
GitHub - p12tic/cppreference-doc_debian: Maintained at https://salsa.debian.org/debian/cppreference-doc · GitHub
This is source package for Cppreference C++ standard library reference documentation available at http://en.cppreference.com.
Starred by 19 users
Forked by 10 users
Languages   HTML 99.9% | JavaScript 0.1% | CSS 0.0% | Python 0.0% | PHP 0.0% | Makefile 0.0%
🌐
GitHub
github.com › hos-b › cpp-ref
GitHub - hos-b/cpp-ref: my cpp reference based on stuff from the internet · GitHub
my cpp reference based on stuff from the internet. Contribute to hos-b/cpp-ref development by creating an account on GitHub.
Author   hos-b
🌐
GitHub
github.com › aplqo › cppreference-pdf
GitHub - aplqo/cppreference-pdf: Generate pdf from cppreference
Generate pdf from cppreference . Contribute to aplqo/cppreference-pdf development by creating an account on GitHub.
Author   aplqo
🌐
GitHub
github.com › kazuho › cppref
GitHub - kazuho/cppref: man-style access to cppreference.com documents · GitHub
man-style access to cppreference.com documents. Contribute to kazuho/cppref development by creating an account on GitHub.
Starred by 32 users
Forked by 6 users
Languages   Perl
🌐
cppreference.com
en.cppreference.com › cpp › links
Useful resources - cppreference.com
cplusplus/draft — The official GitHub repository of current draft.