Installation
Prerequisites
Before installing, ensure you have the following:
- Node.js (Version
16.xor higher recommended) - npm (included with Node.js) or Yarn
Installation
You can install simple-web-scraper using npm or Yarn:
Using npm
npm install simple-web-scraper
Using Yarn
yarn add simple-web-scraper
Importing the Package
After installation, you can import it into your project:
For ES Modules (Recommended)
import { WebScraper, exportToJSON, exportToCSV } from 'simple-web-scraper';
For CommonJS (Node.js Default)
const { WebScraper, exportToJSON, exportToCSV } = require('simple-web-scraper');
Next Steps
After installation, check out the Usage Guide for how to integrate
simple-web-scraper into your project.