linkedin-profile-company-scraper
v1.0.6
Published
Scraper for getting data about companies and users
Downloads
7
Maintainers
Readme
Installation
npm i linkedin-profile-company-scraper
const Lnkdn = require("linkedin-profile-company-scraper");
(async () => {
const client = new Lnkdn("YOUR_LINKEDIN_COOKIE");
const data = await client.fetch("https://www.linkedin.com/in/mchl-plstv/");
console.log(data);
})();
Web interface
If you want to run the web interface on you own, you can do as follows :
git clone https://github.com/Cooya/Linkedin-Client.git linkedin-client
cd linkedin-client
yarn (npm install)
yarn build (npm run build)
echo "module.exports = { cookie: 'YOUR_LINKEDIN_COOKIE' };" > config.json
yarn start (npm start)