kore

Kore is a web application platform for writing scalable, concurrent web based processes in C or Python.
Commits | Files | Refs | README | LICENSE | git clone https://git.kore.io/kore.git

README.md (319B)



      1 Kore asynchronous libcurl integration example.
      2 
      3 This example demonstrates how you can use the asynchronous libcurl
      4 api from Kore to perform HTTP client requests, or FTP requests, or send
      5 emails all in an asynchronous fashion.
      6 
      7 Run:
      8 ```
      9 	$ kodev run
     10 	$ curl https://127.0.0.1:8888
     11 	$ curl https://127.0.0.1:8888/ftp
     12 ```