From cc94b222cd65ac830bc1d83c7603fa5bc8917db7 Mon Sep 17 00:00:00 2001 From: Catalin Zalog Date: Sat, 22 Oct 2016 12:13:44 +0300 Subject: [PATCH] docs(readme): repairs cannot find module error After deleting all node_modules, and trying to run `ng init` it search for @angular/core and don't find it. This is what it returns: ```bash Cannot find module '@angular/core' ``` --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index b1956aee2b8e..5b3fd417131a 100644 --- a/README.md +++ b/README.md @@ -412,6 +412,7 @@ Local project package: ```bash rm -rf node_modules dist tmp npm install --save-dev angular-cli@latest +npm install ng init ```