From 3eb6dc16a89e879a0a7f281e88cc1bee834793eb Mon Sep 17 00:00:00 2001 From: Santiago Persico Date: Sun, 6 Feb 2022 02:01:34 -0300 Subject: [PATCH] Improve quickstart script DX with npx use Set the bash script to use npx, so that devs don't need to install it first --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 35091ca..9b79d62 100644 --- a/README.md +++ b/README.md @@ -25,10 +25,10 @@ Create your project using the [GitHub CLI](https://cli.github.com/) and with one ```bash # Create a TypeScript + Kurier API. -gh repo create my-api-with-kurier -p kurierjs/kurier-starter-pack-typescript +npx gh repo create my-api-with-kurier -p kurierjs/kurier-starter-pack-typescript # Create a JavaScript + Kurier API. -gh repo create my-api-with-kurier -p kurierjs/kurier-starter-pack-javascript +npx gh repo create my-api-with-kurier -p kurierjs/kurier-starter-pack-javascript ``` ### The DIY way