Skip to content

Instantly share code, notes, and snippets.

View zakattack9's full-sized avatar
🚫

Zak Sakata zakattack9

🚫
View GitHub Profile
### Keybase proof
I hereby claim:
* I am zakattack9 on github.
* I am zak26111 (https://keybase.io/zak26111) on keybase.
* I have a public key ASApem69JEhcROI9fQ2pe1dXg_wWSBXTWLCjx610y7k7mQo
To claim this, I am signing this object:
@zakattack9
zakattack9 / index.js
Created July 25, 2019 18:51
Web Scraper Initial Setup
const express = require('express');
const cheerio = require('cheerio');
const cloudscraper = require('cloudscraper');
const app = express();
const port = process.env.PORT || 5000;
app.get('/scrape', function (req, res) {
res.send('Hello World');
})