From 9b0e89c4bfb11711df5b8205ebfdaab6561d6331 Mon Sep 17 00:00:00 2001 From: Eric Thomas Date: Thu, 28 Sep 2017 17:18:47 -0600 Subject: [PATCH] Add `npm init` MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit If you don't do this, you'll receive this error: ``` ❯ zeppelin npm install zeppelin-solidity npm WARN saveError ENOENT: no such file or directory, open '/Users/et/package.json' npm WARN enoent ENOENT: no such file or directory, open '/Users/et/package.json' npm WARN et No description npm WARN et No repository field. npm WARN et No README data npm WARN et No license field. + zeppelin-solidity@1.3.0 updated 1 package in 0.677s ``` --- docs/source/getting-started.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/source/getting-started.rst b/docs/source/getting-started.rst index 6f84f870a2a..0381c2cf7d9 100644 --- a/docs/source/getting-started.rst +++ b/docs/source/getting-started.rst @@ -9,6 +9,7 @@ Zeppelin integrates with `Truffle `_, an To install the Zeppelin library, run:: + npm init # follow instructions npm i zeppelin-solidity After that, you'll get all the library's contracts in the contracts/zeppelin folder. You can use the contracts in the library like so::