
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
@mashakujou/manhwaweb-scraper
Advanced tools
Scraper ligero para obtener datos de capítulos de Manhwaweb desde su API pública
Este proyecto es un scraper para obtener información, imágenes y capítulos de manhwas desde ManhwaWeb usando su API pública.
npm install axios
index.js
: Código principal con funciones para buscar manhwas, obtener capítulos, imágenes, info de series y capítulos previos/siguientes.index.js
:const api = require('./index');
api.setDebug(true);
const { results, totalPages } = await api.search('School', 0, true);
console.log(results);
true
hace que también incluya el link al primer capítulo en cada resultado (firstChapterUrl
).const chapterUrl = results[0].firstChapterUrl;
const fullData = await api.full(chapterUrl);
console.log(fullData.title);
console.log(fullData.imgs); // Array de URLs de imágenes
const imgs = await api.images(chapterUrl);
console.log(imgs);
const pn = await api.prevNext(chapterUrl);
console.log(pn.prev, pn.next);
const idSerie = results[0].url.split('/').pop();
const info = await api.seriesInfo(idSerie);
console.log(info);
search(q, p = 0, includeFirstChapter = false)
Busca manhwas por texto q
. Devuelve resultados y total páginas. Si includeFirstChapter
es true, cada resultado incluye el link al capítulo 1.
full(urlCapitulo)
Obtiene título, imágenes y capítulos previos/siguientes del capítulo indicado.
images(urlCapitulo)
Devuelve solo las imágenes del capítulo.
prevNext(urlCapitulo)
Devuelve URLs de capítulos previos y siguientes.
seriesInfo(idSerie | urlSerie)
Obtiene información general de la serie.
FAQs
Scraper ligero para obtener datos de capítulos de Manhwaweb desde su API pública
The npm package @mashakujou/manhwaweb-scraper receives a total of 3 weekly downloads. As such, @mashakujou/manhwaweb-scraper popularity was classified as not popular.
We found that @mashakujou/manhwaweb-scraper demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.