From 06e34221abc3b93e6f8baab4095ce53fa4ff884e Mon Sep 17 00:00:00 2001 From: Nishant Arora <1895906+whizzzkid@users.noreply.github.com> Date: Mon, 30 Oct 2023 00:29:21 -0600 Subject: [PATCH] =?UTF-8?q?docs(readme):=20=F0=9F=A9=B9=20ERR=5FOSSL=5FEVP?= =?UTF-8?q?=5FUNSUPPORTED=20Node=20Fix.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Nishant Arora <1895906+whizzzkid@users.noreply.github.com> --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index c5162ec5..9db08aa6 100644 --- a/README.md +++ b/README.md @@ -105,6 +105,12 @@ To build a local copy, run the following: npm start ``` +1. On the latest version of Node (>=18) you'll encounter `ERR_OSSL_EVP_UNSUPPORTED` errors. To fix this, either use Node 16 or: + + ```bash + NODE_OPTIONS=--openssl-legacy-provider npm start + ``` + 1. Open [localhost:8080](http://localhost:8080) in your browser. You can close the local server with `CTRL` + `c`. To restart the local server, run `npm start` from inside the `ipfs-blog` directory.