Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/r-lib/available
Check if a package name is available to use
https://github.com/r-lib/available
r r-package rstats unconf unconf17
Last synced: 5 days ago
JSON representation
Check if a package name is available to use
- Host: GitHub
- URL: https://github.com/r-lib/available
- Owner: r-lib
- License: other
- Created: 2017-04-28T14:59:20.000Z (over 7 years ago)
- Default Branch: main
- Last Pushed: 2024-08-28T15:00:43.000Z (5 months ago)
- Last Synced: 2025-01-12T06:02:00.505Z (12 days ago)
- Topics: r, r-package, rstats, unconf, unconf17
- Language: R
- Homepage: https://r-lib.github.io/available/
- Size: 1.34 MB
- Stars: 144
- Watchers: 7
- Forks: 18
- Open Issues: 16
-
Metadata Files:
- Readme: README.Rmd
- Changelog: NEWS.md
- License: LICENSE
- Code of conduct: .github/CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
---
output: github_document
---```{r, echo = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "README-"
)
```[![CRAN status](https://www.r-pkg.org/badges/version/available)](https://CRAN.R-project.org/package=available)
[![R-CMD-check](https://github.com/r-lib/available/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/r-lib/available/actions/workflows/R-CMD-check.yaml)
[![Codecov test coverage](https://codecov.io/gh/r-lib/available/graph/badge.svg)](https://app.codecov.io/gh/r-lib/available)
\# available
> available helps you name your R package.
- Checks for validity
- Checks not already available on GitHub, CRAN and Bioconductor
- Can suggest possible names based on text in the package title or description.## Installation
You can install available from CRAN with:
```{r CRAN-installation, eval = FALSE}
install.packages("available")
```Or the development version from GitHub with:
```{r gh-installation, eval = FALSE}
pak::pak("r-lib/available")
```## Examples
\## Generate new package names from titles
```{r}
library(available)
suggest(text = "Client for New York Times APIs")suggest(text = "An R Interface to SciDB")
```### Rstudio Support
RStudio versions 1.1 and later support color in the terminal.