CtrlK
BlogDocsLog inGet started
Tessl Logo

tessl/npm-eruda

Console for Mobile Browsers providing comprehensive debugging tools for mobile web development

Pending

Quality

Pending

Does it follow best practices?

Impact

Pending

No eval scenarios have been run

SecuritybySnyk

Pending

The risk profile of this skill

Overview
Eval results
Files

resource-manager.mddocs/

Resource Manager

Management of browser resources including localStorage, sessionStorage, cookies, scripts, and stylesheets. The Resources tool provides comprehensive access to browser storage and loaded resources.

Capabilities

Storage Management

Manage browser storage with CRUD operations and real-time updates.

/**
 * Refresh all resource sections
 */
refresh(): void;

/**
 * Refresh localStorage section
 */
refreshLocalStorage(): void;

/**
 * Refresh sessionStorage section  
 */
refreshSessionStorage(): void;

/**
 * Refresh cookie section
 */
refreshCookie(): void;

Resource Inspection

Inspect loaded scripts, stylesheets, images, and iframes.

/**
 * Refresh script resources section
 */
refreshScript(): void;

/**
 * Refresh stylesheet resources section
 */
refreshStylesheet(): void;

/**
 * Refresh iframe resources section
 */
refreshIframe(): void;

/**
 * Refresh image resources section
 */
refreshImage(): void;

Configuration

const config: {
  set<K extends keyof ResourcesConfig>(name: K, value: ResourcesConfig[K]): void;
};

interface ResourcesConfig {
  /** Hide Eruda settings from resources view */
  hideErudaSetting?: boolean;
  /** Auto refresh elements when DOM changes */
  observeElement?: boolean;
}

Features include localStorage/sessionStorage editing, cookie management, script/stylesheet inspection, and image resource viewing.

Install with Tessl CLI

npx tessl i tessl/npm-eruda

docs

code-snippets.md

console-tool.md

core-api.md

elements-inspector.md

index.md

info-display.md

network-monitor.md

resource-manager.md

settings-manager.md

source-viewer.md

tool-development.md

tile.json