Skip to content
/ scia Public

[WIP] An easy-to-use web-scraper, that helps you find the real value in an <html> haystack.

License

Notifications You must be signed in to change notification settings

henczi/scia

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

scia

Scia

Scia is an easy to use web scraper, that generates a structured JSON of your choice from any HTML. Works with Node.js, Deno and Bun.

Getting started

Node.js

npm install scia
import { scrape, select } from 'scia';

const json = await scrape('https://example.com',  { title: select('h1') });

Deno

import { scrape, select } from 'https://deno.land/x/scia/mod.ts';

const json = await scrape('https://example.com',  { title: select('h1') });

Bun

bun install scia
import { scrape, select } from 'scia';

const json = await scrape('https://example.com',  { title: select('h1') });

About

[WIP] An easy-to-use web-scraper, that helps you find the real value in an <html> haystack.

Topics

Resources

License

Stars

Watchers

Forks