Properly test your NPM packages before publishing.
This CLI tool allows you to easily test your package in the published format, without having to publish to an NPM registry.
This will not work with MS Windows. Only MacOS and *nix. If you are interested in getting to work on Windows, pls file a ticket.
Watch this video to learn how to use r2g: TBD (video demo coming in the future)
The video will reference this example repo:
https://github.com/ORESoftware/r2g.example
$ npm i -g r2g
You can add the following to your ~/.bashrc and/or ~/.bash_profile files:
. "$HOME/.oresoftware/shell.sh"
=> Note you will also get bash completion for r2g, if you source the above shell script.
_____________________________________________________________________________________________
see docs/faq.md
r2g tests your package after using npm pack
and npm install --production
. You can use your current test suite for testing, and also write some new smoke tests
that are specific to r2g. r2g current has 3 phases, each phase is optional:
- phase-Z: packs your project and installs the packed project as a dependency of itself then runs
npm test
on your project. You can overridenpm test
withr2g.test
in package.json. - phase-S: installs your project as a dependency of a dummy package in
$HOME/.r2g/temp/project
, then it executes ther2gSmokeTest
function exported from your main. - phase-T: Copies the test scripts from
.r2g/tests
in your project, to$HOME/.r2g/temp/project/tests
, and runs them.
By default all phases are run, but you can skip phases with the --skip=z,s,t
option.
r2g is one of several tools that makes managing multiple locally developed NPM packages easier.
The current pieces are:
- npm-link-up (NLU) => links multiple NPM packages together for local development
- r2g => tests local packages properly before publishing to NPM
- npp => publish multiple packages and sync their semver versions
$ r2g run ### note: `r2g test` is an alias of `r2g run`
- Runs the tool, and runs all phases.
$ r2g run --skip=z,s
- This will skip phases Z and S
$ r2g run -z -s
- This will also skip phases Z and S
$ r2g run --full
- Installs other locally developed dependencies to your main package, defined in
.r2g/config.js
, and tests everything together
$ r2g run --full --pack
- Installs other locally developed dependencies to your main package, npm packs them too, and tests everything together
$ r2g inspect
- Copies your project to a temp folder and logs info about a temp tarball that gets created
- AKA, you can see which contents/folders/files will get included in the tarball
- Also warns you about any especially large files that you may have accidentally included.
$ r2g publish
- Publish your package and ignore the .r2g folder for an even leaner tarball
- Copies your project to a temp folder and the .r2g folder is excluded/ignored
- Also copies symlinks so you can include symlinked files/folders easily when publishing
- This tool is only proven on MacOS/*nix, not tested on Windows. If you do Windows and want something to do - fork this and make it work for Windows - it won't be hard.
- You can use r2g with zero-config, depending on what you want to do.
- Testing does not happen in your local codebase - before anything, your codebase is copied to
"$HOME/.r2g/temp/copy"
, and all writes happen within"$HOME/.r2g/temp"
. - If you use the
--full
option, the local deps of your package will copied to:"$HOME/.r2g/temp/deps"
- You can and should put your regular tests in
.npmignore
, but your .r2g folder should not be in.npmignore
To make this README as clear and concise as possible:
- Your NPM package is referred to as
X
. X is the name of the package you publish to NPM, which is the "name" field of your package.json. - The package.json file for X is simply referred to as
X-package.json
. - Your index.js file (or whatever the "main" property points to in X-package.json), is referred to as
X-main
This tool complements your standard CI/CD testing for NPM libraries. You might already be using Travis, CircleCI, etc, to test your library
when you do a git push
. Keep doing that. However, what you are already doing is likely to be insufficient because:
- You install using
npm install
instead ofnpm install --production
, because you need your devDependencies for your tests. (whoops!). - You are testing your package directly, instead of testing it as a dependency of another project. In reality, someone will be using your package via
node_modules/X
, and for example, your postinstall routine may behave differently here. - You are not using
npm pack
to package your project before testing it. Your.npmignore
file could mean you will be missing files, when someone goes to use your package in the wild. Likewise, if the "files" property in X-package.json is too passive, you might be missing files as well. Usingnpm pack
before testing solves that. - It is possible to check out a branch that has passed on a remote CI/CD platform but locally does not have the built/transpiled target files. This means the files will not make it into the tarball that gets published to NPM. Testing with r2g locally before publishing a local branch means you avoid this problem, because if the target files are not built, r2g tests will fail.
The above things are why you need to take some extra pre-cautions before publishing NPM packages. I think everyone has had an .npmignore
file that accidentally ignored files we need in production.
And we have all had dependencies listed in devDependencies instead of dependencies, which caused problems when people try to use the library. Those are the motivations for using this tool,
to prove that X works in its final format.
- There is a secret feature which is extremely badass - install other locally developed packages which are dependencies of X, as part of r2g testing. See "Linking with existing local dependencies" below.
To learn more about how r2g works in detail, see: docs/r2g-runtime-steps.md
You can use r2g with zero-config - you just need to implement a single function.
To start, execute this in a shell at the root of your project:
$ r2g run
This command will then fail. That's expected.
To get your test to pass, add this to X-main (your package's index file, whatever "main" in package.json points to):
exports.r2gSmokeTest = async () => {
return Promise.resolve(true);
};
the above function is called with Promise.resolve(X.r2gSmokeTest())
, and in order to pass it must resolve to true
(not just truthy).
To read more about the exported r2gSmokeTest function, see: docs/r2g-smoke-test-exported-main-function.md
Note: the exported function r2gSmokeTest
allows you to smoke test your package. When this function is run you may use the production dependencies declared in your project.
However, for other r2g tests, you may not directly use the dependencies declared in X-package.json, you may only require X itself.
To do more sophisticated tests, we add some configuration in a folder called .r2g in the root of your project.
To do this, run:
r2g init
this will add a folder to your project called .r2g
. Your .r2g
folder should never be in .npmignore
. (Running r2g init
is safe, it will not overwrite any existing files).
Your new .r2g
folder contains a file called: .r2g/smoke-test.js
.
Now when r2g run
executes, it will run .r2g/smoke-test.js
, but it will run this test in the context of the main project, meaning it will copy:
$HOME/.r2g/temp/project/node_modules/X/.r2g/smoke-test.js
--> $HOME/.r2g/temp/project/smoke-test.js
The above is very important to understand, because it means that this smoke test should not include any dependencies from X-package.json.
In fact, the only dependency .r2g/smoke-test.js
should require, besides core modules, is X itself.
Run r2g init
and in your .r2g/config.js
file, add local package names to the packages property:
exports.default = {
// ...
packages: {
// local packages will be installed to your project --> test your local dependencies instead of installing from NPM
'your-local-package-b': true,
'your-local-package-c': true
}
}
If you execute r2g run --full
these packages (b,c) will be discovered on your local fs, and copied to "$HOME/.r2g/temp/deps/*"
, and then X's package.json will look like this:
{
"dependencies": {
"your-local-package-b": "file:///home/user/.r2g/temp/deps/your-local-package-b",
"your-local-package-c": "file:///home/user/.r2g/temp/deps/your-local-package-c",
}
}
If you execute r2g run --full --pack
, then this awesomeness happens:
{
"dependencies": {
"your-local-package-b": "file:///home/user/.r2g/temp/deps/your-local-package-b.tgz",
"your-local-package-c": "file:///home/user/.r2g/temp/deps/your-local-package-c.tgz",
}
}
So using r2g run --full
=> we install local deps instead of the deps from NPM.
And using r2g run --full --pack
=> we pack the local deps before installing them.
Awesome.
To read more about using local deps for testing instead of installing your local deps from NPM, see:
=> docs/r2g-using-local-deps.md
Use a Docker container for a fresh/independent/isolated testing env. For packages that do more complex/system things, it will be useful to use a locally running Docker container. To use r2g in a Docker container, see: https://github.com/ORESoftware/r2g.docker
Alternatively, you can just run r2g as part of your normal CI/CD library testing on remote servers. First, make sure you have Docker installed on your local machine. See standard installation instructions for MacOS/*nix.
Run this in the root of your project:
$ r2g init --docker # you only need to run this once per project, but won't hurt if you do it more than once
Then run this:
$ r2g docker
The above command actually uses this command line tool:
https://github.com/ORESoftware/r2g.docker
- Instead a dummy NPM project which will depend on X, we can allow users to use their own test projects, and pull those in with
git clone
or what not.
Just adding some spaces here