awesome-repositories.com
ब्लॉग
MCP
awesome-repositories.com

AI-संचालित खोज के साथ बेहतरीन ओपन-सोर्स रिपॉजिटरी खोजें।

एक्सप्लोर करेंक्यूरेटेड खोजेंओपन-सोर्स विकल्पसेल्फ-होस्टेड सॉफ्टवेयरब्लॉगसाइटमैप
प्रोजेक्टMCP सर्वरहमारे बारे मेंहम रैंकिंग कैसे करते हैंप्रेस
कानूनीगोपनीयताशर्तें
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·
Back to martinus/nanobench

Open-source alternatives to Nanobench

30 open-source projects similar to martinus/nanobench, ranked by how many features they have in common. Compare stars, activity and what each one does to find the best Nanobench alternative.

  • libnonius/noniuslibnonius का अवतार

    libnonius/nonius

    367GitHub पर देखें↗

    A C++ micro-benchmarking framework

    C++
    GitHub पर देखें↗367
  • google/benchmarkgoogle का अवतार

    google/benchmark

    10,240GitHub पर देखें↗

    This project is a performance measurement framework and microbenchmarking library designed for C++ and Python. It provides a toolset for measuring the execution time of small code fragments using high-resolution timers, calculating statistical aggregates, and analyzing asymptotic complexity. The framework distinguishes itself through specialized capabilities for multithreaded performance testing, using synchronized execution to measure parallel throughput. It includes mechanisms to prevent compiler optimizations from removing benchmarked code and supports complex parameterization via Cartesia

    C++benchmark
    GitHub पर देखें↗10,240
  • digitalinblue/celeroDigitalInBlue का अवतार

    DigitalInBlue/Celero

    861GitHub पर देखें↗

    C++ Benchmark Authoring Library/Framework

    C++benchmarkbenchmark-testsc-plus-plus
    GitHub पर देखें↗861
  • bombela/backward-cppbombela का अवतार

    bombela/backward-cpp

    4,285GitHub पर देखें↗

    backward-cpp is a C++ stack trace library and debugging utility designed to capture, resolve, and print detailed execution traces and crash reports. It functions as a crash reporter and call stack printer that translates raw memory addresses into human-readable function names, filenames, and line numbers. The project provides automated crash reporting by registering system handlers for fatal errors, such as segmentation faults, to automatically generate execution traces upon program failure. It distinguishes itself by extracting source file fragments from disk to display specific lines of cod

    C++
    GitHub पर देखें↗4,285

AI सर्च

और अधिक बेहतरीन रिपॉजिटरी खोजें

अपनी ज़रूरत को सरल भाषा में बताएं — AI हजारों क्यूरेटेड ओपन-सोर्स प्रोजेक्ट्स को प्रासंगिकता के आधार पर रैंक करता है।

Find more with AI search
  • onqtam/doctestonqtam का अवतार

    onqtam/doctest

    6,768GitHub पर देखें↗

    doctest is a unit testing framework and assertion library for C++ delivered as a single-header library. It provides a test runner with a command line interface to execute tests, filter test suites, and generate execution reports. The framework supports in-source unit testing and allows for the complete removal of testing logic from compiled binaries via preprocessor stripping to eliminate performance overhead in production environments. It also enables cross-binary test registry sharing, allowing one executable to utilize the test runner of another. Capabilities include parameterized testing

    C++
    GitHub पर देखें↗6,768
  • cobaltfusion/debugviewppCobaltFusion का अवतार

    CobaltFusion/DebugViewPP

    1,251GitHub पर देखें↗

    DebugView++, collects, views, filters your application logs, and highlights information that is important to you!

    C++
    GitHub पर देखें↗1,251
  • philip82148/cpp-dumpphilip82148 का अवतार

    philip82148/cpp-dump

    381GitHub पर देखें↗

    A C++ library for debugging purposes that can print any variable, even user-defined types.

    C++
    GitHub पर देखें↗381
  • ibob/picobenchiboB का अवतार

    iboB/picobench

    234GitHub पर देखें↗

    A micro microbenchmarking library for C++11 in a single header file

    C++
    GitHub पर देखें↗234
  • meekrosoft/fffmeekrosoft का अवतार

    meekrosoft/fff

    922GitHub पर देखें↗

    A testing micro framework for creating function test doubles

    C
    GitHub पर देखें↗922
  • p-ranav/criterionp-ranav का अवतार

    p-ranav/criterion

    232GitHub पर देखें↗

    Microbenchmarking for Modern C++

    C++
    GitHub पर देखें↗232
  • boostorg/testboostorg का अवतार

    boostorg/test

    209GitHub पर देखें↗

    The reference C++ unit testing framework (TDD, xUnit, C++03/11/14/17)

    C++boostc-plus-plusunit-testing
    GitHub पर देखें↗209
  • dascandy/hippomocksdascandy का अवतार

    dascandy/hippomocks

    201GitHub पर देखें↗

    Hippomocks

    C++
    GitHub पर देखें↗201
  • cpputest/cpputestcpputest का अवतार

    cpputest/cpputest

    1,472GitHub पर देखें↗

    CppUTest unit testing and mocking framework for C/C++

    C++
    GitHub पर देखें↗1,472
  • stepci/stepcistepci का अवतार

    stepci/stepci

    1,860GitHub पर देखें↗

    Automated API Testing and Quality Assurance

    TypeScript
    GitHub पर देखें↗1,860
  • eranpeer/fakeiteranpeer का अवतार

    eranpeer/FakeIt

    1,364GitHub पर देखें↗

    C++ mocking made easy. A simple yet very expressive, headers only library for c++ mocking.

    C++
    GitHub पर देखें↗1,364
  • jonasmr/microprofilejonasmr का अवतार

    jonasmr/microprofile

    1,584GitHub पर देखें↗

    microprofile is an embeddable profiler

    C
    GitHub पर देखें↗1,584
  • google/googletestgoogle का अवतार

    google/googletest

    38,713GitHub पर देखें↗

    This project is a comprehensive C++ unit testing framework designed to verify code logic and identify regressions through a suite of assertion macros, test fixtures, and execution runners. It automates the discovery and registration of test cases during static initialization, allowing developers to define isolated test environments that ensure repeatable and predictable conditions for every execution. The framework distinguishes itself through a sophisticated mock object library that enables the simulation of components and the enforcement of strict interaction requirements. By intercepting v

    C++
    GitHub पर देखें↗38,713
  • catchorg/catch2catchorg का अवतार

    catchorg/Catch2

    20,198GitHub पर देखें↗

    Catch2 is a comprehensive framework for C++ software validation, providing an environment for unit testing, integration verification, and performance analysis. It enables developers to define and execute automated test suites and micro-benchmarks directly within their applications. The framework is distinguished by its header-only distribution, which allows for integration into existing build systems without requiring complex external dependencies. It utilizes a hierarchical section-based execution model that supports behavior-driven testing, allowing for shared setup and teardown logic acros

    C++bddcppcpp14
    GitHub पर देखें↗20,198
  • libcheck/checklibcheck का अवतार

    libcheck/check

    1,167GitHub पर देखें↗

    A unit testing framework for C

    C
    GitHub पर देखें↗1,167
  • siu/minunitsiu का अवतार

    siu/minunit

    635GitHub पर देखें↗

    Minimal unit testing framework for C

    C
    GitHub पर देखें↗635
  • stdlib-js/stdlibstdlib-js का अवतार

    stdlib-js/stdlib

    5,735GitHub पर देखें↗
    JavaScriptjavascriptjslibrary
    GitHub पर देखें↗5,735
  • brianfrankcooper/ycsbB

    brianfrankcooper/YCSB

    0GitHub पर देखें↗

    Copyright (c) 2010 Yahoo! Inc., 2012 - 2016 YCSB contributors. All rights reserved.

    GitHub पर देखें↗0
  • bradleyjkemp/grpc-toolsbradleyjkemp का अवतार

    bradleyjkemp/grpc-tools

    1,239GitHub पर देखें↗

    A suite of gRPC debugging tools. Like Fiddler/Charles but for gRPC.

    Godebugging-toolgrpcinterceptor
    GitHub पर देखें↗1,239
  • barryvdh/laravel-debugbarbarryvdh का अवतार

    barryvdh/laravel-debugbar

    19,242GitHub पर देखें↗

    Laravel Debugbar is a web-based debugging toolbar and application profiler for Laravel. It provides a visual interface to inspect database queries, logs, and performance metrics in real time to identify and resolve bugs during development. The tool features a database query monitor to capture SQL statements and timings, as well as a request inspector for analyzing route metadata, loaded views, and HTTP request data. It includes a profiler for measuring execution time and memory usage to identify bottlenecks in the request lifecycle. Its observability capabilities cover exception capture, app

    PHP
    GitHub पर देखें↗19,242
  • cschreib/snitchcschreib का अवतार

    cschreib/snitch

    306GitHub पर देखें↗

    Lightweight C++20 testing framework.

    C++
    GitHub पर देखें↗306
  • cobraframework/pytest-cobracobraframework का अवतार

    cobraframework/pytest-cobra

    27GitHub पर देखें↗

    PyTest plugin for testing smart contracts for Ethereum blockchain.

    Python
    GitHub पर देखें↗27
  • cyclejs/cycle-time-travelcyclejs का अवतार

    cyclejs/cycle-time-travel

    216GitHub पर देखें↗

    cycle-time-travel is a time travelling stream viewer for Cycle.js apps.

    JavaScript
    GitHub पर देखें↗216
  • darklynx/request-basketsdarklynx का अवतार

    darklynx/request-baskets

    424GitHub पर देखें↗

    HTTP requests collector to test webhooks, notifications, REST clients and more ...

    Go
    GitHub पर देखें↗424
  • boost-experimental/utboost-experimental का अवतार

    boost-experimental/ut

    1,432GitHub पर देखें↗

    C++20 μ(micro)/Unit Testing framework

    C++
    GitHub पर देखें↗1,432
  • aniket-engg/sol-profilerAniket-Engg का अवतार

    Aniket-Engg/sol-profiler

    29GitHub पर देखें↗

    CLI Tool to List & Store Solidity Smart Contract Methods Attributes

    JavaScript
    GitHub पर देखें↗29