✨ Features: - App iOS completa para leer manga sin publicidad - Scraper con WKWebView para manhwaweb.com - Sistema de descargas offline - Lector con zoom y navegación - Favoritos y progreso de lectura - Compatible con iOS 15+ y Sideloadly/3uTools 📦 Contenido: - Backend Node.js con Puppeteer (opcional) - App iOS con SwiftUI - Scraper de capítulos e imágenes - Sistema de almacenamiento local - Testing completo - Documentación exhaustiva 🧪 Prueba: Capítulo 789 de One Piece descargado exitosamente - 21 páginas descargadas - 4.68 MB total - URLs verificadas y funcionales 🎉 Generated with Claude Code (https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
51 lines
1.2 KiB
JavaScript
51 lines
1.2 KiB
JavaScript
'use strict'
|
|
|
|
// We include a version number for the Dispatcher API. In case of breaking changes,
|
|
// this version number must be increased to avoid conflicts.
|
|
const globalDispatcher = Symbol.for('undici.globalDispatcher.1')
|
|
const { InvalidArgumentError } = require('./core/errors')
|
|
const Agent = require('./dispatcher/agent')
|
|
|
|
if (getGlobalDispatcher() === undefined) {
|
|
setGlobalDispatcher(new Agent())
|
|
}
|
|
|
|
function setGlobalDispatcher (agent) {
|
|
if (!agent || typeof agent.dispatch !== 'function') {
|
|
throw new InvalidArgumentError('Argument agent must implement Agent')
|
|
}
|
|
Object.defineProperty(globalThis, globalDispatcher, {
|
|
value: agent,
|
|
writable: true,
|
|
enumerable: false,
|
|
configurable: false
|
|
})
|
|
}
|
|
|
|
function getGlobalDispatcher () {
|
|
return globalThis[globalDispatcher]
|
|
}
|
|
|
|
// These are the globals that can be installed by undici.install().
|
|
// Not exported by index.js to avoid use outside of this module.
|
|
const installedExports = /** @type {const} */ (
|
|
[
|
|
'fetch',
|
|
'Headers',
|
|
'Response',
|
|
'Request',
|
|
'FormData',
|
|
'WebSocket',
|
|
'CloseEvent',
|
|
'ErrorEvent',
|
|
'MessageEvent',
|
|
'EventSource'
|
|
]
|
|
)
|
|
|
|
module.exports = {
|
|
setGlobalDispatcher,
|
|
getGlobalDispatcher,
|
|
installedExports
|
|
}
|