Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/r-lib/pkgload
Simulate installing and loading a package
https://github.com/r-lib/pkgload
r
Last synced: 3 months ago
JSON representation
Simulate installing and loading a package
- Host: GitHub
- URL: https://github.com/r-lib/pkgload
- Owner: r-lib
- Created: 2016-11-07T21:45:48.000Z (almost 8 years ago)
- Default Branch: main
- Last Pushed: 2024-07-31T08:04:26.000Z (3 months ago)
- Last Synced: 2024-08-01T09:26:56.639Z (3 months ago)
- Topics: r
- Language: R
- Homepage: http://pkgload.r-lib.org
- Size: 6.82 MB
- Stars: 58
- Watchers: 5
- Forks: 44
- Open Issues: 15
-
Metadata Files:
- Readme: README.md
- Changelog: NEWS.md
- Code of conduct: .github/CODE_OF_CONDUCT.md
Awesome Lists containing this project
- jimsghstars - r-lib/pkgload - Simulate installing and loading a package (R)
README
# pkgload
[![Codecov test coverage](https://codecov.io/gh/r-lib/pkgload/branch/main/graph/badge.svg)](https://app.codecov.io/gh/r-lib/pkgload?branch=main)
[![R-CMD-check](https://github.com/r-lib/pkgload/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/r-lib/pkgload/actions/workflows/R-CMD-check.yaml)The goal of pkgload is to simulate the process of installing and loading a
package, without actually doing the complete process, and hence making package
iteration much faster. This was previously part of devtools (it was in fact the
original motivation) but has been moved into its own package as part of the
devtools [conscious uncoupling](https://github.com/r-lib/devtools#conscious-uncoupling).## Usage
In most cases you will not use pkgload directly, and instead you'll call it via `devtools::load_all()`.
``` r
devtools::load_all()
```## Code of Conduct
Please note that the pkgload project is released with a [Contributor Code of Conduct](https://contributor-covenant.org/version/2/1/CODE_OF_CONDUCT.html). By contributing to this project, you agree to abide by its terms.