From 98912d434451f2ba9cfa4fa5d36e385cd55407b0 Mon Sep 17 00:00:00 2001 From: Uros Cirkovic Date: Fri, 14 Apr 2023 11:14:11 +0200 Subject: [PATCH] feat: add a faq about installing nodemon --- readme.md | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/readme.md b/readme.md index b1e0560f8d..753e4a4d6f 100644 --- a/readme.md +++ b/readme.md @@ -140,6 +140,24 @@ Check out the [documentation](https://developer.mozilla.org/en-US/docs/Learn/HTM +
+ When I try to run the app, I get an error "command not found: nodemon" + +
+ Make sure you have nodemon installed on your machine: + + ```bash + npm install -g nodemon + ``` + + This will install nodemon globally on your system, making it available to all of your projects. + +
+ + [Back to top](#faqs) + +
+
How to create a Mongoose model? @@ -748,4 +766,4 @@ Check out the [documentation](https://developer.mozilla.org/en-US/docs/Learn/HTM [Back to top](#faqs) -
\ No newline at end of file +