npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@lookloot/capture-sdk-overwolf-native

v0.1.5

Published

LookLoot Capture SDK adapter for classic Overwolf Native apps.

Downloads

940

Readme

LookLoot Capture SDK for Overwolf Native

Use this package from a classic Overwolf Native app background window. It mirrors the public LookLootCapture API from the Electron SDK, but records through Overwolf Native replay, game-event, and input-tracking APIs by default.

pnpm add @lookloot/capture-sdk-overwolf-native
import { LookLootCapture } from "@lookloot/capture-sdk-overwolf-native";

const capture = new LookLootCapture({
  appId: "your-registered-app-slug",
  appVersion: "1.0.0",
  getDeviceToken: async ({ appId, appVersion, deviceName, anonymousId }) => {
    const res = await fetch("https://your-api.example.com/api/lookloot/device-token", {
      method: "POST",
      headers: { "content-type": "application/json" },
      body: JSON.stringify({ appId, appVersion, deviceName, anonymousId }),
    });
    const data = await res.json();
    return data.token;
  },
  uploadBridge: window.looklootOverwolfUploadBridge,
});

await capture.init();

The upload bridge is required for production video uploads because Overwolf replay capture returns a local media_path. JSON artifacts upload directly with browser fetch.

Capture backend choice

The default replay.captureBackend is "overwolf_recorder". Use it when you want Overwolf Recorder as the no-OBS capture engine:

const capture = new LookLootCapture({
  appId: "your-registered-app-slug",
  getDeviceToken,
  uploadBridge: window.looklootOverwolfUploadBridge,
  upload: { videoBackend: "chunked_hls" },
});

Use upload.videoBackend: "chunked_hls" for the custom growing HLS upload/playback stack. Mux Live upload mode is deprecated for production captures. Omit upload.videoBackend for one finalized replay upload after stop().

Developers can choose Overwolf Recorder in either Overwolf runtime. This is the classic Overwolf Native side of the same recorder path used by Overwolf Electron apps through @lookloot/capture-sdk with captureEngine: "overwolf-recorder".

The native recorder settings enable Overwolf game-window capture and game-only audio, with microphone capture disabled. They do not request default output-device or system audio capture, so unrelated apps such as browsers are not intentionally included in native recorder audio.

Apps that need user-selected window capture outside Overwolf Recorder support can opt into:

const capture = new LookLootCapture({
  appId: "your-registered-app-slug",
  getDeviceToken,
  replay: { captureBackend: "browser_display_media" },
  upload: { videoBackend: "chunked_hls" },
});

browser_display_media rejects monitor and browser-tab selections so it does not upload desktop capture. It uses playable WebM browser Blob chunks and does not require the file upload bridge for video.

Verify locally before upload

Use the native verification helpers from a debug menu or smoke-test command. They do not call getDeviceToken, create a LookLoot session, or upload anything.

const diagnostics = capture.getRuntimeDiagnostics();
const result = await capture.runLocalVerification({ durationMs: 8000 });
await capture.openLocalVerificationViewer(result);

Open a game, keep it focused, and press keys or click during the verification window. Passing local verification means result.video.ok === true, result.video.replayId is present, result.video.mediaPath or result.video.mediaUrl is present, and result.input.eventCount > 0.

After local verification passes, run a normal token-backed capture and verify remote ingestion with GET https://www.lookloot.gg/api/partner/captures/verify.