A linkedin-bot which automatically accepts all the connection invitations.
- Clone this repo ,
cd
to project root and add.env
file with your username and password. - Make sure node is installed on your system.
- Install chrome-driver on your system.
- Install dependencies using
npm i
- Run
node index.js
- SSH into your cloud instance.
- Clone this repo.
- Configure your environment variables.
3.a) MacOS/Linux
> export USERNAME="Replace this with your linkedin username without quotes)"
> export PASSWORD="Replace this with your linkedin password without quotes)"
3.b) Windows-CMD
> setx USERNAME "Replace this with your linkedin username without quotes"
> setx PASSWORD "Replace this with your linkedin password without quotes"
& ensp;3.c) Powershell
> $Env:USERNAME="Replace this with your linkedin username"
> $Env:PASSWORD="Replace this with your linkedin password"
- Install node and chrome-driver.
cd
to project root and install dependencies usingnpm i
- Run the application.
6.a) Launch script by runningnode index.js
6.b) Launch using pm2 by runningnpm install pm2@latest -g && pm2 start index.js