Siddhant Kumar
Siddhant Kumar
to reproduce: ```ftd -- boolean $success: false -- ftd.redirect: / if: { success } -- ftd.text: click me to get response $on-click$: call-http() -- void call-http(opts): ftd.http-options opts: $opts ftd.http("http://127.0.0.1:3000/test.json",...
`fastn` compiled in debug mode using `cargo build` crash in some cases. ``` thread 'actix-server worker 0' has overflowed its stack fatal runtime error: stack overflow fish: Job 1, 'fastn.dev...
## Expected Behavior Expected the index route of [fastn.com website](https://github.com/fastn-stack/fastn.com/) to load properly using the latest fastn version (`0.4.35`) ## Current Behavior Some images won't load. The console throws error:...
The sitemap works with documents with no extensions as well. This is a bug, we want the user to explicitly mention file extensions. Current behaviour: Below code works and assumes...
Replace call to `stat`, `lstat`, and `maybeLstat` with appropriate functions from `std::filesystem`
# Motivation The cpp `std::filesystem` [has functions](https://en.cppreference.com/w/cpp/filesystem/status) that we can use in place of `stat` and `lstat`. This makes the code more portable between windows and unix. Some places where...
```ftd -- string $val: click me -- optional string $msg: -- ftd.text: $val $on-click$: ftd.set-string($a = $msg, v = I'll be called) $on-click$ if { msg != NULL }: ftd.set-string($a...
```ftd -- string name: siddhant -- string x: $name -- ftd.text: $x ``` The output for the above code is: When `x` is an `optional string`: ```ftd -- string name:...
```ftd -- ftd.text: $x if: { x == 'z' } for: $x in $ts -- string list ts: -- string: x -- string: y -- string: z -- end: ts...
A system package that contains a `.wasm` module can declare a `fastn.url-mappings` entry in its FASTN.ftd: ```ftd -- import: fastn -- fastn.package: lets-auth.fifthtry.site system: lets-auth system-is-confidential: false -- fastn.url-mappings: /backend/*...