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

https://github.com/johncoene/parcel

Parcel for R
https://github.com/johncoene/parcel

javascript parcel r rstats

Last synced: about 1 year ago
JSON representation

Parcel for R

Awesome Lists containing this project

README

          

# parcel

[docs](https://parcel.john-coene.com)

Interact with [parcel](https://parceljs.org) from R, supports [npm](https://github.com/JohnCoene/npm) and [yarn](https://github.com/JohnCoene/yarn).

## Installation

``` r
# install.packages("remotes")
remotes::install_github("JohnCoene/parcel")
```

## Example

Parcel is much less hands-on than [packer](http://packer.john-coene.com/).

``` r
library(parcel)

# create a package
usethis::create_package("testParcel")
setwd("testParcel")

# use parcel
set_engine("yarn") # defaults to npm
scaffold_parcel()
```