From 7b739e8eb90908598a219bf272cea24d41d2eb7b Mon Sep 17 00:00:00 2001 From: Sean Lavine Date: Wed, 16 Mar 2016 20:00:27 -0700 Subject: [PATCH] readme: recommend bitcoin-core --- Readme.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Readme.md b/Readme.md index eecf9d5..ae1c13a 100644 --- a/Readme.md +++ b/Readme.md @@ -18,12 +18,12 @@ node-bitcoin is a simple wrapper for the Bitcoin client's JSON-RPC API. +If starting a new project, I highly encourage you to take a look at the more modern [bitcoin-core](https://github.com/seegno/bitcoin-core). + The API is equivalent to the API document [here](https://en.bitcoin.it/wiki/Original_Bitcoin_client/API_Calls_list). The methods are exposed as lower camelcase methods on the `bitcoin.Client` object, or you may call the API directly using the `cmd` method. -This module uses callbacks, which is the prevalent way to work with asynchronous functions in Node.js. If you'd like to instead use promises, then please see the [bitcoin-promise](https://github.com/rcorbish/node-bitcoin-promise) module. - ## Install `npm install bitcoin`