Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/sellorm/dailies

Simple R package with tools for getting RStudio daily build URLs
https://github.com/sellorm/dailies

package r rstats rstudio

Last synced: about 1 month ago
JSON representation

Simple R package with tools for getting RStudio daily build URLs

Awesome Lists containing this project

README

        

# dailies

The goal of dailies is to provide some simple tools for working with the RStudio daily builds.

## Installation

You can install the development version from [GitHub](https://github.com/) with:

``` r
# install.packages("devtools")
devtools::install_github("sellorm/dailies")
```

## Example

The most common thing you might want to do is get the download URL for the latest daily version:

``` r
dailies::latest("ubuntu", type = "desktop")
```

Download the latest build in your default web browser:

``` r
browseURL(dailies::latest("macos", type = "desktop"))
```

Open the RStudio Daily build website:

``` r
dailies::browse_website()
```