Tools for Working with R-universe and its APIs.
You can install the development version of universe from r-universe:
Or the development version of universe from GitHub with:
Documentation is available on https://docs.ropensci.org/universe.
Use runiverse::add() to opt-in to a package repository
(this will modify your options('repos') list).
For more details see the documentation for runiverse::add().
library(universe)
#>
#> Attaching package: 'universe'
#> The following object is masked from 'package:base':
#>
#> remove
universe_ls("jeroen")
#> [1] "RAppArmor" "V8" "badgen" "base64" "bcrypt" "brotli"
#> [7] "curl" "js" "jsonlite" "maketools" "mongolite" "openssl"
#> [13] "protolite" "rjade" "sys" "unix" "webp" "webutils"universe_all_packages("jeroen", limit = 1) |>
str(max.level = 2)
#> List of 1
#> $ :List of 69
#> ..$ Package : chr "jsonlite"
#> ..$ Version : chr "2.0.0"
#> ..$ Title : chr "A Simple and Robust JSON Parser and Generator for R"
#> ..$ License : chr "MIT + file LICENSE"
#> ..$ Authors@R : chr "c(\nperson(\"Jeroen\", \"Ooms\", role = c(\"aut\", \"cre\"), email = \"[email protected]\",\ncomment = c(ORC"| __truncated__
#> ..$ URL : chr "https://jeroen.r-universe.dev/jsonlite\nhttps://arxiv.org/abs/1403.2805"
#> ..$ BugReports : chr "https://github.com/jeroen/jsonlite/issues"
#> ..$ Maintainer : chr "Jeroen Ooms <[email protected]>"
#> ..$ VignetteBuilder : chr "knitr, R.rsp"
#> ..$ Description : chr "A reasonably fast JSON parser and generator, optimized for\nstatistical data and the web. Offers simple, flexib"| __truncated__
#> ..$ RoxygenNote : chr "7.3.2"
#> ..$ Encoding : chr "UTF-8"
#> ..$ Roxygen : chr "list(markdown = TRUE)"
#> ..$ Repository : chr "https://jeroen.r-universe.dev"
#> ..$ Date/Publication: chr "2025-10-15 11:06:43 UTC"
#> ..$ RemoteUrl : chr "https://github.com/jeroen/jsonlite"
#> ..$ RemoteRef : chr "HEAD"
#> ..$ RemoteSha : chr "ef983529db2023770ea82fb31f12f67cf6b42f14"
#> ..$ NeedsCompilation: chr "yes"
#> ..$ Packaged :List of 2
#> ..$ Author : chr "Jeroen Ooms [aut, cre] (ORCID: <https://orcid.org/0000-0002-4035-0289>),\nDuncan Temple Lang [ctb],\nLloyd Hila"| __truncated__
#> ..$ MD5sum : chr "b771b715db64ffae852eaf1dd807093c"
#> ..$ _user : chr "jeroen"
#> ..$ _type : chr "src"
#> ..$ _file : chr "jsonlite_2.0.0.tar.gz"
#> ..$ _fileid : chr "3bfca7488b1115d52e117459eff17160e2fa6f47aadf1235aa5d035ca786d09f"
#> ..$ _filesize : int 550936
#> ..$ _sha256 : chr "3bfca7488b1115d52e117459eff17160e2fa6f47aadf1235aa5d035ca786d09f"
#> ..$ _created : chr "2025-10-19T07:08:08.000Z"
#> ..$ _published : chr "2025-10-19T07:12:31.586Z"
#> ..$ _distro : chr "noble"
#> ..$ _jobs :List of 13
#> ..$ _buildurl : chr "https://github.com/r-universe/jeroen/actions/runs/18626961116"
#> ..$ _status : chr "success"
#> ..$ _host : chr "GitHub-Actions"
#> ..$ _upstream : chr "https://github.com/jeroen/jsonlite"
#> ..$ _commit :List of 5
#> ..$ _maintainer :List of 7
#> ..$ _registered : logi TRUE
#> ..$ _dependencies :List of 8
#> ..$ _owner : chr "jeroen"
#> ..$ _selfowned : logi TRUE
#> ..$ _usedby : int 8601
#> ..$ _updates :List of 6
#> ..$ _tags : list()
#> ..$ _topics :List of 2
#> ..$ _stars : int 397
#> ..$ _contributors :List of 25
#> ..$ _userbio :List of 4
#> ..$ _downloads :List of 2
#> ..$ _mentions : int 36
#> ..$ _devurl : chr "https://github.com/jeroen/jsonlite"
#> ..$ _searchresults : int 40704
#> ..$ _rbuild : chr "4.5.1"
#> ..$ _assets :List of 11
#> ..$ _homeurl : chr "https://github.com/jeroen/jsonlite"
#> ..$ _realowner : chr "jeroen"
#> ..$ _cranurl : logi TRUE
#> ..$ _releases :List of 46
#> ..$ _exports :List of 23
#> ..$ _help :List of 11
#> ..$ _readme : chr "https://github.com/jeroen/jsonlite/raw/HEAD/README.md"
#> ..$ _rundeps : list()
#> ..$ _vignettes :List of 5
#> ..$ _score : num 21.3
#> ..$ _indexed : logi TRUE
#> ..$ _nocasepkg : chr "jsonlite"
#> ..$ _universes :List of 1
#> ..$ _binaries :List of 12universe_one_package("jeroen", package = "curl") |>
str(max.level = 1)
#> List of 74
#> $ Package : chr "curl"
#> $ Type : chr "Package"
#> $ Title : chr "A Modern and Flexible Web Client for R"
#> $ Version : chr "7.0.1"
#> $ Authors@R : chr "c(\nperson(\"Jeroen\", \"Ooms\", role = c(\"aut\", \"cre\"), email = \"[email protected]\",\ncomment = c(ORC"| __truncated__
#> $ Description : chr "Bindings to 'libcurl' <https://curl.se/libcurl/> for\nperforming fully configurable HTTP/FTP requests where res"| __truncated__
#> $ License : chr "MIT + file LICENSE"
#> $ SystemRequirements: chr "libcurl (>= 7.73): libcurl-devel (rpm) or\nlibcurl4-openssl-dev (deb)"
#> $ URL : chr "https://jeroen.r-universe.dev/curl"
#> $ BugReports : chr "https://github.com/jeroen/curl/issues"
#> $ VignetteBuilder : chr "knitr"
#> $ RoxygenNote : chr "7.3.2"
#> $ Encoding : chr "UTF-8"
#> $ Language : chr "en-US"
#> $ Roxygen : chr "list(load = \"installed\", markdown = TRUE)"
#> $ Config/pak/sysreqs: chr "libssl-dev"
#> $ Repository : chr "https://jeroen.r-universe.dev"
#> $ Date/Publication : chr "2025-10-13 12:08:30 UTC"
#> $ RemoteUrl : chr "https://github.com/jeroen/curl"
#> $ RemoteRef : chr "HEAD"
#> $ RemoteSha : chr "963756b837cb7620dae8df82ecc66d4cc8f88946"
#> $ NeedsCompilation : chr "yes"
#> $ Packaged :List of 2
#> $ Author : chr "Jeroen Ooms [aut, cre] (ORCID: <https://orcid.org/0000-0002-4035-0289>),\nHadley Wickham [ctb],\nPosit Software, PBC [cph]"
#> $ Maintainer : chr "Jeroen Ooms <[email protected]>"
#> $ MD5sum : chr "1c1fc8e66c63481bad15f96566dae3cc"
#> $ _user : chr "jeroen"
#> $ _type : chr "src"
#> $ _file : chr "curl_7.0.1.tar.gz"
#> $ _fileid : chr "51fd6229dd733c88ed5e155d7175f1468ef49d21631f8015ff009f6562d8a752"
#> $ _filesize : int 335907
#> $ _sha256 : chr "51fd6229dd733c88ed5e155d7175f1468ef49d21631f8015ff009f6562d8a752"
#> $ _created : chr "2025-10-18T11:24:48.000Z"
#> $ _published : chr "2025-10-18T11:30:40.809Z"
#> $ _distro : chr "noble"
#> $ _jobs :List of 13
#> $ _buildurl : chr "https://github.com/r-universe/jeroen/actions/runs/18614959499"
#> $ _status : chr "success"
#> $ _host : chr "GitHub-Actions"
#> $ _upstream : chr "https://github.com/jeroen/curl"
#> $ _commit :List of 5
#> $ _maintainer :List of 7
#> $ _registered : logi TRUE
#> $ _dependencies :List of 9
#> $ _owner : chr "jeroen"
#> $ _selfowned : logi TRUE
#> $ _usedby : int 5625
#> $ _updates :List of 33
#> $ _tags :List of 6
#> $ _stars : int 230
#> $ _contributors :List of 23
#> $ _userbio :List of 4
#> $ _downloads :List of 2
#> $ _mentions : int 21
#> $ _devurl : chr "https://github.com/jeroen/curl"
#> $ _searchresults : int 4128
#> $ _topics :List of 1
#> $ _rbuild : chr "4.5.1"
#> $ _assets :List of 11
#> $ _homeurl : chr "https://github.com/jeroen/curl"
#> $ _realowner : chr "jeroen"
#> $ _cranurl : logi TRUE
#> $ _releases :List of 56
#> $ _exports :List of 44
#> $ _help :List of 19
#> $ _readme : chr "https://github.com/jeroen/curl/raw/HEAD/README.md"
#> $ _rundeps : list()
#> $ _sysdeps :List of 1
#> $ _vignettes :List of 2
#> $ _score : num 20.1
#> $ _indexed : logi TRUE
#> $ _nocasepkg : chr "curl"
#> $ _universes :List of 1
#> $ _binaries :List of 12