body-snatchers

v1.2.0
Get bodies from web pages

Get the HTML text bodies from web pages

Get a single body

const { getBody } = require('body-snatchers')

const bodyString = await getBody('https://news.ycombinator.com/', false)

Multiple bodies

const { getBodies } = require('body-snatchers')

const bodyStrings = await getBodies([
  { url: 'https://news.ycombinator.com/' },
  { url: 'https://google.com/', js: true } // page that requires JavaScript
])

Motivation

  • Ease burden on CPU (requests pages one at a time)
  • Work on Raspberry Pi (tested on 2, 3, 4*)
npm i body-snatchers

Metadata

  • MIT
  • >=10.0.0
  • Unknown
  • released 8/4/2022

Downloads

Maintainers