Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/sellorm/dailies
- Owner: sellorm
- License: other
- Created: 2018-08-09T09:59:12.000Z (over 6 years ago)
- Default Branch: main
- Last Pushed: 2021-12-30T14:52:50.000Z (almost 3 years ago)
- Last Synced: 2024-08-13T07:13:33.651Z (4 months ago)
- Topics: package, r, rstats, rstudio
- Language: R
- Homepage:
- Size: 43.9 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - sellorm/dailies - Simple R package with tools for getting RStudio daily build URLs (R)
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()
```