generator-newpackage

Yeoman generator for a new R package

Usage no npm install needed!

<script type="module">
  import generatorNewpackage from 'https://cdn.skypack.dev/generator-newpackage';
</script>

README

R package generator

This generator scaffolds the files for your new R project. The resulting file structure looks like this:

{packagename}
|
├── DESCRIPTION
├── NAMESPACE
├── NEWS.md
├── R
│   ├── pending.R
│   └── {packagename}-package.R
├── README.md
├── man
│   └── {packagename}.Rd
└── tests
    ├── test-all.R
    └── testthat
        └── test-pending.R

Included out of the box

Requires the following to be installed:

Installation on mac:

# install dependencies
brew install npm # apt-get install npm on ubuntu
sudo npm install -g yo generator-newpackage

# start using
cd package/directory
yo newpackage
# or
yo newpackage packageName