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
- Host: GitHub
- URL: https://github.com/johncoene/parcel
- Owner: JohnCoene
- License: other
- Created: 2021-02-07T17:57:12.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-02-08T20:46:48.000Z (over 5 years ago)
- Last Synced: 2025-04-12T00:42:26.260Z (about 1 year ago)
- Topics: javascript, parcel, r, rstats
- Language: HTML
- Homepage: https://parcel.john-coene.com/
- Size: 320 KB
- Stars: 7
- Watchers: 5
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
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()
```