An actually useful LinkedIn Nodejs package
npm install linkedin-api-jsYou can use your LinkedIn credentials in code, making this super simple to use!
This project was HEAVILY inspired by Tomquirk's LinkedIn-API PyPi package, which you can find at https://github.com/tomquirk/linkedin-api
npm i linkedin-api-jsJS
// log in
const LAPI = new linkedInAPIClass();
await LAPI.login("pinknodders@pinknodders.lol", "");// GET a company
const comp = await LAPI.searchCompanies("Linux");
// GET one employee
const emp = await comp[0].getEmployees("Torvalds", 1);
``For more information, check out The Wiki
If you do contribute, please follow these guidelines
1. Document your changes in the PR (i.e. make a bulleted list of changes)
2. If you change existing code, you must specify that
3. Please please please don't be me and push credentials
Thanks for using my project!
ION606