From ef8a70595756d2c01481728914d55b4af1de7522 Mon Sep 17 00:00:00 2001 From: Lovell Fuller Date: Fri, 1 May 2020 11:38:09 +0100 Subject: [PATCH] Docs: move npm install command to examples --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 61d7aef9..ec5a55da 100644 --- a/README.md +++ b/README.md @@ -2,10 +2,6 @@ sharp logo -```sh -npm install sharp -``` - The typical use case for this high speed Node.js module is to convert large images in common formats to smaller, web-friendly JPEG, PNG and WebP images of varying dimensions. @@ -25,6 +21,10 @@ do not require any additional install or runtime dependencies. ## Examples +```sh +npm install sharp +``` + ```javascript const sharp = require('sharp'); ```