jester icon indicating copy to clipboard operation
jester copied to clipboard

A sinatra-like web framework for Nim.

Results 66 jester issues
Sort by recently updated
recently updated
newest added

From this commit onwards, https://github.com/dom96/jester/commit/187477923a7577b3e1246bb70c0c980d7c4e1682, relative staticDir no longer works. From the readme: `By default Jester looks for static files in ./public` It seems only logical then, to set `staticDir`...

OS: Mac Nimble: ``` # Dependencies requires "nim >= 1.0.4", "jester" ``` If I have all code in a single file: ``` import jester, json routes: get "/": var jsonResp...

The code below would work 10 times faster if compiled with `AsyncHttpServer` instead of `HttpBeast`. I guess it's because it uses `spawn` and competes with `HttpBeast` for same `ThreadPool`. Not...

```nim import jester from cgi import decodeUrl router extern: get "/@testvalue": resp decodeUrl(@"testvalue") ``` If I import this router from the main file, I get the following error: `Error: undeclared...

Bug

I wanted to try doing a bit of work on jester but I'm having trouble getting started and would appreciate any help. I checkedout 0.5.0 and attempted to run a...

The following code ```nim import jester except newSettings, settings router myRouter: get "/library": resp "library" when isMainModule: let mySettings = jester.newSettings( port=Port(7000) ) var jesterInstance = initJester(myRouter, mySettings) serve(jesterInstance) ```...

depends on https://github.com/dom96/httpbeast/pull/53 which should be merged first ## before PR ``` in terminal tab 1: nim r --threads jester/tests/example.nim in terminal tab 2: nim r --threads jester/tests/example.nim # no...

to be merged after https://github.com/dom96/httpbeast/pull/47 since it depends on it

https://github.com/dom96/jester/blob/d8a03aa4c681bc8514bb7bbf4953d380d86f5bd6/jester/request.nim#L95 Sometimes, in query strings, you need to pass lists. This is generally done by duplicating the same key over like: `name=a&name=b`. juster folds these into a single parameter in...

Feature