Skip to content

Installation

Parcel is an R package whcih can thus simply be installed from Github with remotes:

1
2
# install.packages("remotes")
remotes::install_github("JohnCoene/parcel")

Then one must also install one of the two engines, either npm or yarn. Make sure you have npm installed.

Npm

If you have npm installed then only the npm package is required.

1
2
# install.packages("remotes")
remotes::install_github("JohnCoene/npm")

Yarn

If you have npm installed, get the yarn package.

1
remotes::install_github("JohnCoene/yarn")

Then, install yarn.

1
yarn::install_yarn()