Difference between revisions of "BitcoinJS"

From Bitcoin Wiki
Jump to: navigation, search
(Add to category Mobile.)
m (Links updated)
 
Line 25: Line 25:
 
* First commit was uploaded on March 12th, 2011 <ref>[https://github.com/justmoon/node-bitcoin-p2p/commit/aaad1406cfc652560abb708619e201898672f1db "Initial commit."] committed, March 12th 2011</ref>
 
* First commit was uploaded on March 12th, 2011 <ref>[https://github.com/justmoon/node-bitcoin-p2p/commit/aaad1406cfc652560abb708619e201898672f1db "Initial commit."] committed, March 12th 2011</ref>
 
* Repository moved to separate BitcoinJS account on April 30th, 2011 <ref>[https://github.com/justmoon/node-bitcoin-p2p/commit/a585bbae384a523c3d2ee19973daffd8db3d199a "Added new README with link to new repo."] committed, April 30, 2011</ref>
 
* Repository moved to separate BitcoinJS account on April 30th, 2011 <ref>[https://github.com/justmoon/node-bitcoin-p2p/commit/a585bbae384a523c3d2ee19973daffd8db3d199a "Added new README with link to new repo."] committed, April 30, 2011</ref>
* Official announcement including screencast on May 5th, 2011 <ref>[http://forum.bitcoin.org/?topic=7357.0 "Webcoin Alpha Sneak Preview"] on Bitcoin.org forums, May 5, 2011</ref>
+
* Official announcement including screencast on May 5th, 2011 <ref>[https://bitcointalk.org/index.php?topic=7357.0 "Webcoin Alpha Sneak Preview"] on Bitcoin.org forums, May 5, 2011</ref>
  
 
== See Also ==
 
== See Also ==

Latest revision as of 22:48, 18 February 2012

A reimplementation of Bitcoin using Node.js and web technologies.

It currently implements the basics of the Bitcoin protocol, enough to send and receive transactions via the Webcoin frontend. All official BitcoinJS components are released under the MIT license.

Components

BitcoinJS consists of several loosely coupled component that can be used in different combinations to solve different problems.

node-bitcoin-p2p

The main component implementing the Bitcoin P2P protocol and parts of the JSON-RPC API. You can think of it as the counterpart to the original client's CLI daemon, bitcoind.

As the name implies, node-bitcoin-p2p is built using the Node.js framework. It also uses MongoDB for storage and indexing of the block chain data.

node-bitcoin-exit

Builds on top of node-bitcoin-p2p to provide access to balances and transaction information on a per-account basis. It also allows the upload of new transactions to the network. These two functions are enough to allow a client to access the network only through this server.

Other

Various other software builds on top of the basic BitcoinJS infrastructure. Notable examples include Webcoin and BitcoinJS Explorer.

History

  • First commit was uploaded on March 12th, 2011 [1]
  • Repository moved to separate BitcoinJS account on April 30th, 2011 [2]
  • Official announcement including screencast on May 5th, 2011 [3]

See Also

External Links

References

  1. "Initial commit." committed, March 12th 2011
  2. "Added new README with link to new repo." committed, April 30, 2011
  3. "Webcoin Alpha Sneak Preview" on Bitcoin.org forums, May 5, 2011