-
Notifications
You must be signed in to change notification settings - Fork 12
/
_pkgdown.yml
73 lines (69 loc) · 2.4 KB
/
_pkgdown.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
destination: docs
url: https://fiery.data-imaginist.com
authors:
Thomas Lin Pedersen:
href: https://data-imaginist.com
template:
params:
bootswatch: simplex
navbar:
left:
- icon: fa-home fa-lg
href: index.html
- text: Reference
href: reference/index.html
- text: Articles
menu:
- text: The event cycle
href: articles/events.html
- text: Delaying code execution
href: articles/delayed.html
- text: Creating and using plugins
href: articles/plugins.html
- text: "------------------"
- text: "Demos"
- text: "Fiery on Heroku"
href: https://www.data-imaginist.com/2017/setting-fire-to-deployment/
- text: News
menu:
- text: "Release notes"
- text: "Version 1.0.0"
href: https://www.data-imaginist.com/2017/when-a-fire-starts-to-burn/
- text: "------------------"
- text: "Change log"
href: news/index.html
right:
- text: reqres
href: https://reqres.data-imaginist.com
- text: routr
href: https://routr.data-imaginist.com
- icon: fa-github fa-lg
href: https://github.com/thomasp85/fiery
reference:
- title: "The Fire object"
desc: >
fiery is build on top of the R6 class system and all functionality in the
package is more or less part of the Fire class. The understanding of this
class is thus integral to understanding fiery.
contents:
- Fire
- title: "Logging"
desc: >
Logs are an important part of many servers and fiery has a central logging
facility where callbacks and handlers can send logging information to
without worrying about where and how the logs get written.
contents:
- loggers
- title: "Request and response objects"
desc: >
A lot of the logic in web servers are concerned with parsing requests and
building up responses. fiery uses the Request and Response classes defined
in the [reqres](https://github.com/thomasp85/reqres) package. See the
documentation there.
- title: "Routing"
desc: >
A central part of many servers is the router that takes care of recieving
requests and directing them at the right handlers for further processing.
Being the minimal server framework that it is, fiery doesn't include
router functionality itself, but the
[routr](https://github.com/thomasp85/routr) package.