Learn R Programming

jug (version 0.1.7)

jug: New jug instance

Description

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

Usage

jug()

Arguments

Examples

Run this code
# 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")


Run the code above in your browser using DataLab