How to web scrapping with meteor1.4&react

Packet to scapping:
Anonyfox/meteor-scrape: https://github.com/Anonyfox/meteor-scrape

layout from https://github.com/AdamBrodzinski/meteor-react-boilerplate

i don’t know how to use Anonyfox/meteor-scrape with meteor-react.

i don’t know how to use Anonyfox/meteor-scrape with meteor-react.

i’m newbie for meteor, plz help me!!

this package is no more maintained since 2 years as you can see on github.

see How to web scrapping with Meteor1.4&react?

(please don’t post the same questions in multiple topics :wink:

Probably:

meteor npm install --save scrape-it

//server.js

import scrapeIt from 'scrape-it';

scrapeIt("http://ionicabizau.net", {
    title: ".header h1"
  , desc: ".header h2"
  , avatar: {
        selector: ".header img"
      , attr: "src"
    }
}).then(page => {
    console.log(page);
});

thx, but now i used this : http://www.netinstructions.com/simple-web-scraping-with-node-js-and-javascript/