Difference between revisions of "Node Litecoin"

From Litecoin Wiki
Jump to: navigation, search
(Examples)
 
Line 1: Line 1:
= node-litecoin =
+
Node-Litecoin is a simple node.js wrapper for the Litecoin client's JSON-RPC API.
 
+
node-litecoin is a simple node.js wrapper for the Litecoin client's JSON-RPC API.
+
  
 
The API is equivalent to the API document [https://en.bitcoin.it/wiki/Original_Bitcoin_client/API_Calls_list here]. The methods are exposed as lower camelcase methods on the <code>litecoin.Client</code> object.
 
The API is equivalent to the API document [https://en.bitcoin.it/wiki/Original_Bitcoin_client/API_Calls_list here]. The methods are exposed as lower camelcase methods on the <code>litecoin.Client</code> object.
Line 14: Line 12:
 
<li><p>Traverse to <code>~/.litecoin</code> or <code>~/Library/Application Support/Litecoin</code> and add a file called <code>litecoin.conf</code> if it doesn't already exist.</p></li>
 
<li><p>Traverse to <code>~/.litecoin</code> or <code>~/Library/Application Support/Litecoin</code> and add a file called <code>litecoin.conf</code> if it doesn't already exist.</p></li>
 
<li><p>Add these lines to the file:</p>
 
<li><p>Add these lines to the file:</p>
<p>rpcuser=username</p>
+
<code><p>rpcuser=username</p>
<p>rpcpassword=password</p></li></ol>
+
<p>rpcpassword=password</p></code></li></ol>
  
 
You will use these to login to the server.
 
You will use these to login to the server.
Line 24: Line 22:
  
 
== Examples ==
 
== Examples ==
### Create client <code>js var litecoin = require('litecoin'); var client = new litecoin.Client('localhost', 9332, 'username', 'password');</code>
+
=== Create client ===
 +
 
 +
<pre class="js">var litecoin = require('litecoin');
 +
var client = new litecoin.Client('localhost', 9332, 'username', 'password');
 +
</pre>
 +
 
 +
 
 
=== Create client with single object ===
 
=== Create client with single object ===
  
Line 46: Line 50:
 
   console.log('Network Hash Rate: ' + hashps);
 
   console.log('Network Hash Rate: ' + hashps);
 
});</pre>
 
});</pre>
 +
 +
:''Sourced from [https://github.com/litecoin-project/litecoin/wiki/node-litecoin Node Litcoin]

Latest revision as of 13:26, 30 April 2013

Personal tools
Namespaces

Variants
Actions
Navigation
Toolbox