We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4673d24 commit 305f33cCopy full SHA for 305f33c
denoexample.ts
@@ -0,0 +1,4 @@
1
+const req = await fetch(Deno.env.get('SCRAPER_ADDRESS') + '/users')
2
+const users = await req.json()
3
+console.log(users)
4
+
examples/deno/env.json
@@ -0,0 +1,14 @@
+{
+ "primary_server": {
+ "server_location": "http://localhost:4000",
+ "api_key_id": "aa",
5
+ "api_key": "bbb"
6
+ },
7
+ "alternative_servers": [],
8
+ "login_users": [
9
+ {
10
+ "username": "scraping-site-username",
11
+ "password": "scraping-site-password"
12
+ }
13
+ ]
14
+}
0 commit comments