Janet 1.27.0-01aab66 Documentation
(Other Versions: 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

function (httpf/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.
Community Examples / source
function (httpf/add-route server path docstring schema handler &opt read-mime render-mime)
Add a single manually route to a server. Prefer using `httpf/add-bindings-as-routes` for the usual case.
Community Examples / source
function (httpf/default-payload-wrapper payload)
Add some metadata to all responses
Community Examples / source
function (httpf/listen server &opt host port n-workers)
Start server
Community Examples / source
function (httpf/server &opt parent)
Create a new server.
Community Examples / source