From 2a3e542f13e3a620d6ca6ce80db97aa709550b0b Mon Sep 17 00:00:00 2001 From: Ray Foss Date: Sat, 17 Jul 2021 00:18:53 -0500 Subject: [PATCH] Note about dependencies missing from some Linux distros It's better to let people know about dependencies than finding the in deployment errors. ``` error /app/node_modules/node-webcrypto-ossl: Command failed. Exit code: 1 Command: node-gyp rebuild Arguments: Directory: /app/node_modules/node-webcrypto-ossl Output: gyp info it worked if it ends with ok gyp info using node-gyp@5.1.0 gyp info using node@14.17.3 | linux | x64 gyp ERR! find Python ``` --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 0715318..836747f 100644 --- a/README.md +++ b/README.md @@ -33,6 +33,7 @@ We wanted to be able to write Javascript that used crypto on both the client and ### npm ``` +# Depends on python and openssl npm install node-webcrypto-ossl; ```