Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/rameshmane7218/get-cookies-from-url
- Owner: rameshmane7218
- Created: 2022-10-08T17:13:21.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-10-08T17:17:48.000Z (over 2 years ago)
- Last Synced: 2024-12-17T02:36:06.938Z (23 days ago)
- Topics: nodejs, puppeteer
- Language: JavaScript
- Homepage:
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
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