$processor$: http
fastn
in static site mode, and instead if you are using server mode then this processor makes http request on every page load.-- record repo: string full_name: string description: string html_url: integer stargazers_count: integer watchers_count: -- record result: integer total_count: 0 repo list items:
We have two records: repo
, and result
. We also have a variable of type result
.
-- import: fastn/processor as pr -- result r: $processor$: pr.http url: https://api.github.com/search/repositories sort: stars order: desc q: language:python
url: string
method: optional string
get
as default value. Currently only two methods are supported: get
and post
get
. Otherwise, the pair is passed as the request body.-- string amit-bio: I am Amit. -- person amit: $processor$: pr.http method: post name: "Amit" age: 33 bio: $amit-bio
post
method, the above code would convert into the following request body:{ "name": "Amit", "age": 33, "bio": "I am Amit." }
Currently, there is no way to specify the type of the body parameters, so you need to use "
to pass the value as a string type, or you can define any variable and pass it as a reference since the type of the variable is known.
r
of type record result
defined above.fastn
!fastn
? Please consider giving us a star ⭐️ on GitHub to show your support!Have a question or need help?
Visit our GitHub Q&A discussion to get answers and subscribe to it to stay tuned.
Join our Discord channel and share your thoughts, suggestion, question etc.
Connect with our community!We welcome you to join our Discord community today.
We are trying to create the language for human beings and we do not believe it would be possible without your support. We would love to hear from you.