From 84c91dec313f9ad50fdbdecab652496d497ab08b Mon Sep 17 00:00:00 2001 From: Ilan <36084092+ilanolkies@users.noreply.github.com> Date: Tue, 4 Feb 2020 14:31:58 -0300 Subject: [PATCH] Update README.md (#11) --- README.md | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/README.md b/README.md index a1b4cc0..9cadd16 100644 --- a/README.md +++ b/README.md @@ -33,3 +33,33 @@ async function myCustomGetOwner(domain) { return owner; } ``` + +## Run for development + +Install dependencies: + +``` +git clone git@github.com:rnsdomains/rns-js.git +cd rns-js +npm i +``` + +Run tests: + +``` +npm test +``` + +Try out your development, create a testing project: + +``` +# in rns-js folder +npm run build +npm link +cd .. +mkdir rns-js-test +cd rns-js-test +npm init +npm i web3 +npm link @rsksmart/rns +```