Run a promise (perhaps with p-queue) generating a profiler json suitable to be consumed inside Chrome or Edge devtools to be analyzed
Binaries for Sentry Node Profiling
Adds support for Cloud Profiler to Node.js applications
pprof support for Node.js
A fast and simple library to passively profile JS/Hermes performance in production and release builds.
node bindings for the v8 profiler
Heap dump, sample profiler and allocation timeline generator for Node.
Profile manager for Secretlint.
Elegant ProgressBar and Profiler for Webpack and Rspack
v8 profiling via the chrome dev-tools protocol
Profiler to time function calls in AdonisJs with context
Programmable interface to Clinic.js Heap Profiler
Lerna-Lite Profiler used by certain optional commands (Run/Exec)
pprof support for Node.js
This is the implementation of the Profiler for iOS app. It uses [py-ios-device](https://github.com/YueChen-C/py-ios-device) to poll CPU, RAM and FPS data in real time.
AWS SDK for JavaScript Codeguruprofiler Client for Node.js, Browser and React Native
A Redux store enhancer which uses User Timing API to profile redux actions and time spent on notifying store listeners
Faro package that enables easier integration in projects built with React.
Base functionality used throughout XY Labs TypeScript/JavaScript libraries
Metro require profiler for Rozenite.
Make USB power meters usable with the Firefox Profiler
The agent that can collect or transfer xprofiler's performance logs.
AWS SDK for JavaScript Applicationcostprofiler Client for Node.js, Browser and React Native
based on v8-profiler@5.7.0, solved the v8-profiler segment fault error in node 8.x+
Bindings to google's cpu profiler
cpuprofiler with static linked gperftools and unwind
Overwrites Kernel#p to provide output with file path, line numbers, and profiling.
Lazy As Json A simple and concise way to use as_json with “only”, “except” and other options without using them literally. Instead of using this - `User.as_json(only: [:id, :first_name, profiles: [:company, :location]])` You can perhaps use this - `User.as_json(only_keys: ‘_,first_name,profiles(p),p.company,p.location’)` As simple as this. You can control what your API response should include through a flexible parameter string. i.e. - “/api/v1/users/me?_keys=_,last_name,profiles(p),p.company,p.location” This parameter string could dig through the nested objects and their nesting too. Just to reduce the API response size significantly, you can use this parameter control over wherever it is used. However it might seems quite trivial but frankly speaking it saves lot in response data hence faster loading time at client side. Moreover as it uses Hash.new and constructs attribute on runtime, you can throttle calling from the expensive method by using this parameter string.