-
-
Save robotlolita/ab461ac7268d8b825a66 to your computer and use it in GitHub Desktop.
Bluebird map + bhttp
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(* Assume bhttp-get is available here somehow *) | |
let HTTP = { | |
def get: url | |
(* This would actually need to be imported properly. Yeah, FFI sucks, but oh well... *) | |
Task from-promise: (FFI invoke: bhttp-get in-context: unit with-arguments: [FFI export: url]) | |
} | |
do { | |
response <- HTTP get: "http://somesite.com/all-the-urls.txt"; | |
url <- response at: "body" >> as-string >> split: "\n"; | |
HTTP get: url | |
} recover: { error | | |
Console log!: error | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment