Skip to content

Latest commit

 

History

History
75 lines (47 loc) · 1.25 KB

File metadata and controls

75 lines (47 loc) · 1.25 KB

Install

From NPM

NPM hosts the stable release. It will be the least likely to have bugs.

Dependencies:

Install:

npm install ssb-patchwork -g

Run:

patchwork

Then open localhost:7777.

From Git

GitHub hosts the development version. It will contain updates not yet published on NPM.

Dependencies:

Install:

git clone https://github.com/ssbc/patchwork.git
cd patchwork
npm install

Run:

From directory you cloned patchwork to:

npm start

Then open localhost:7777.

Update:

From directory you cloned patchwork to:

git pull origin master
npm install

Updating NPM

Some people experience installation issues when using the npm version packaged with node 5.3.0. We have found upgrading to npm 3.5.x solves these issues.

If you are using nvm, you can update npm with the following steps:

cd ~/.nvm/versions/node/v5.3.0/lib
npm install npm