forked from rstudio/httpuv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhttpuv-package.Rd
33 lines (31 loc) · 902 Bytes
/
httpuv-package.Rd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
% Generated by roxygen2 (4.1.1): do not edit by hand
% Please edit documentation in R/httpuv.R
\docType{package}
\name{httpuv-package}
\alias{httpuv}
\alias{httpuv-package}
\title{HTTP and WebSocket server}
\description{
HTTP and WebSocket server
}
\details{
Allows R code to listen for and interact with HTTP and WebSocket clients, so
you can serve web traffic directly out of your R process. Implementation is
based on \href{https://github.com/joyent/libuv}{libuv} and
\href{https://github.com/joyent/http-parser}{http-parser}.
This is a low-level library that provides little more than network I/O and
implementations of the HTTP and WebSocket protocols. For an easy way to
create web applications, try \href{http://rstudio.com/shiny/}{Shiny} instead.
}
\examples{
\dontrun{
demo("echo", package="httpuv")
}
}
\author{
Joe Cheng \email{joe@rstudio.com}
}
\seealso{
startServer
}
\keyword{package}