From 9c518ba2f2713d25a881568ffa0faf5657711e9f Mon Sep 17 00:00:00 2001 From: Gregor Martynus Date: Wed, 21 Feb 2018 18:31:39 -0800 Subject: [PATCH] docs(quickstart): remove note on npm@2 Node 4 is close to End-of-life: https://github.com/nodejs/Release#lts-schedule1 And with it, npm 2. It's safe to remove that note now I thik --- docs/guides/quickstart.rst | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/docs/guides/quickstart.rst b/docs/guides/quickstart.rst index f19805618..9ab2635c0 100644 --- a/docs/guides/quickstart.rst +++ b/docs/guides/quickstart.rst @@ -86,17 +86,6 @@ at http://127.0.0.1:8080 after you restart the server. All assets in the public folder, like images, CSS files or JavaScript files, will be served by your Hoodie Backend at :code:`http://127.0.0.1:8080/`. -Note for npm v2 ---------------- - -Because of how npm v2 installs sub dependencies, the hoodie client cannot be -bundled. As a workaround, just install ``pouchdb-browser`` and ``@hoodie/client`` -as a dependency of your hoodie app - -.. code:: bash - - $ npm install --save pouchdb-browser @hoodie/client - What’s next? ~~~~~~~~~~~~