Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/rameshmane7218/get-cookies-from-url

Get-Cookies-From-Url
https://github.com/rameshmane7218/get-cookies-from-url

nodejs puppeteer

Last synced: 20 days ago
JSON representation

Get-Cookies-From-Url

Awesome Lists containing this project

README

        

## Cookies

## Steps to execute code

### Step 1: Install nodejs and npm

https://nodejs.org/en/download/

### Step 2: Install all dependencies

npm install

### Step 3: Set URL and interval time

```javascript
let url = "https://www.google.com"; // add url with http
let interval = 1500; //15s set custom delay interval
/**
* 1s = 1000;
* 1min = 1000 * 60
* 5min - 1000 * 60 * 5
*/
```

### Step 4: Run code

node index.js

### Step 5: Cookies

- Cookies will be stored in cookies.json file.
- Note: If file is not available, It will be created automatically.

### Step 6: To stop code execution

ctrl + c