anubhavhere / httpuv

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

httpuv: HTTP and WebSocket server library for R

httpuv provides low-level socket and protocol support for handling HTTP and WebSocket requests directly from within R. It is primarily intended as a building block for other packages, rather than making it particularly easy to create complete web applications using httpuv alone. httpuv is built on top of the libuv and http-parser C libraries, both of which were developed by Joyent, Inc.

Installing

You can install the stable version from CRAN, or the development version using devtools:

# install from CRAN
install.packages("httpuv")

# or if you want to test the development version here
if (!require("devtools")) install.packages("devtools")
devtools::install_github("rstudio/httpuv")

Since httpuv contains C code, you'll need to make sure you're set up to install packages. Follow the instructions at http://www.rstudio.com/ide/docs/packages/prerequisites


© 2013-2014 RStudio, Inc.

About

License:Other


Languages

Language:C 90.5%Language:C++ 5.9%Language:R 1.3%Language:Python 1.0%Language:Makefile 0.8%Language:Shell 0.3%Language:Batchfile 0.2%Language:DTrace 0.1%