Jug: New jug instance

Description Usage Examples

Description

Creates a new jug instance which can be build upon with other functions (middlewares).

Usage

1
jug()

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
# This Hello World example will serve a jug instance on the default port.
# The jug instance will return "Hello World!" if a GET request is send to it.
jug() %>%
 get("/", function(req, res, err) "Hello World!" ) %>%
 simple_error_handler_json() %>%
 serve_it(verbose=TRUE)



# Introduction to jug
vignette("jug", package="jug")

jug documentation built on May 1, 2019, 10:31 p.m.