Skip to content

Setting up for development

Drew Miller edited this page Jun 16, 2015 · 1 revision

When I have a project that I want to use my local copy of Node_Zuora, this is how I like to setup my installation for local development using npm link.

mkdir workspace
cd workspace

git clone https://github.com/joyent/node_zuora.git
cd node_zuora 
npm link

mkdir ../project
cd ../project
npm init
npm install --save node_zuora
npm link node_zuora

The above makes a new project that will use your local development copy of Node_Zuora instead of the one installed in the project's node_modules.

Clone this wiki locally