From 70e36349f659f5d2ab2b0f1a05ce6c6dcf13e42d Mon Sep 17 00:00:00 2001 From: Can Rau Date: Wed, 26 Oct 2022 15:31:49 -0500 Subject: [PATCH] docs: don't install as dev dependency (I think?) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Think the installation command shouldn't use `-D` as it's used in the production code right, so installing as dev dep would be confusing, right? Please correct me if I'm wrong 🙏 Also thanks a lot for this package, was just using for a way to sign and verify JWT in Pages ❤️ --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f643876..501185d 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ A lightweight JWT implementation with ZERO dependencies for Cloudflare Workers. ## Install ``` -npm i -D @tsndr/cloudflare-worker-jwt +npm i @tsndr/cloudflare-worker-jwt ```