Nothing
suppressPackageStartupMessages(library(pbdZMQ))
addr = "notarealaddress.com.biz.google"
port = 8080
test = address(addr, port)
truth = paste0("tcp://", addr, ":", port)
stopifnot(identical(test, truth))
test = address(addr, transport="ipc")
truth = paste0("ipc://", addr)
stopifnot(identical(test, truth))
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.