f9e952d4345a8b5761d0fe04204becdcf57aae8b
[nit.git] / lib / nitcorn / README.md
1 The nitcorn Web server framework creates server-side Web apps in Nit
2
3 # Examples
4
5 Want to see `nitcorn` in action? Examples are available at ../../examples/nitcorn/src/.
6
7 # Features and TODO list
8
9  - [x] Virtual hosts and routes
10  - [x] Configuration change on the fly
11  - [x] Sessions
12  - [x] Reading cookies
13  - [ ] Full cookie support
14  - [ ] Close interfaces on the fly
15  - [ ] Better logging
16  - [ ] Info/status page
17  - [ ] `ProxyAction` to redirect a request to an external server
18  - [ ] `ModuleAction` which forwards the request to an independant Nit program
19
20 ## Bugs / Limitations
21
22 * The size of requests is limited, so no big uploads
23
24 # Credits
25
26 This nitcorn library is a fork from an independant project originally created in 2013 by
27 Jean-Philippe Caissy, Guillaume Auger, Frederic Sevillano, Justin Michaud-Ouellette,
28 Stephan Michaud and Maxime Bélanger.
29
30 It has been adapted to a library, and is currently maintained, by Alexis Laferrière.