From 6df28b6dedbd40a9727ff2b2579fd643ececf63a Mon Sep 17 00:00:00 2001 From: Yusuf Idi Maina <120538505+yusufidimaina9989@users.noreply.github.com> Date: Mon, 4 Nov 2024 09:42:38 +0100 Subject: [PATCH] Update installation.md --- docs/installation.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/installation.md b/docs/installation.md index 0e7e1ac6b..81eebfe28 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -26,16 +26,16 @@ softwareupdate --install-rosetta --agree-to-license The [sCrypt CLI](https://github.com/sCrypt-Inc/scrypt-cli) tool is used to easily create, compile and publish `sCrypt` projects. The CLI provides best practice project scaffolding including dependencies such as sCrypt, a test framework ([Mocha](https://mochajs.org)), code auto-formatting ([Prettier](https://prettier.io)), linting ([ES Lint](https://eslint.org)), and more. -Run the CLI tool directly with `npx` and try it out by creating a demo project: +Or install it globally on your machine. ```sh -npx scrypt-cli project demo +npm install -g scrypt-cli ``` -Or install it globally on your machine. +Run the CLI tool directly with `npx` and try it out by creating a demo project: ```sh -npm install -g scrypt-cli +npx scrypt-cli project demo ``` :::tip