From 20dd4d2031e822e5772286b31e3a4224e9c27b46 Mon Sep 17 00:00:00 2001 From: Roope Hakulinen Date: Tue, 11 Oct 2016 14:10:15 +0300 Subject: [PATCH] docs(readme): Add missing npm install Since the first line is to remove the whole node_modules folder, it is helpful for users to also tell to re-install them. This way there isn't some cryptic error message shown for the user trying to run ng init command. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 56cbae5772d3..59925f83816e 100644 --- a/README.md +++ b/README.md @@ -412,6 +412,7 @@ Local project package: ``` rm -rf node_modules dist tmp npm install --save-dev angular-cli@latest +npm install ng init ```