Janet 1.37.1-83e8aab Documentation
(Other Versions: 1.36.0 1.35.0 1.34.0 1.31.0 1.29.1 1.28.0 1.27.0 1.26.0 1.25.1 1.24.0 1.23.0 1.22.0 1.21.0 1.20.0 1.19.0 1.18.1 1.17.1 1.16.1 1.15.0 1.13.1 1.12.2 1.11.1 1.10.1 1.9.1 1.8.1 1.7.0 1.6.0 1.5.1 1.5.0 1.4.0 1.3.1 )

HTTP Framework

Index

httpf/add-bindings-as-routes httpf/add-route httpf/default-payload-wrapper httpf/listen httpf/server


httpf/add-bindings-as-routes function source
(add-bindings-as-routes server &opt env)

Add all local functions defined with :path metadata to a server. Will read from the :schema, :doc, :path, and :route-doc metadata to determine how the route behaves.

httpf/add-route function source
(add-route server path docstring schema handler &opt read-mime render-mime)

Add a single route manually to a server. Prefer using `httpf/add-bindings-as-routes` for the usual case.

httpf/default-payload-wrapper function source
(default-payload-wrapper payload)

Add some metadata to all responses

httpf/listen function source
(listen server &opt host port n-workers)

Start server

httpf/server function source
(server &opt parent)

Create a new server.