bitmessage-js/README.md

168 lines
4.7 KiB
Markdown
Raw Permalink Normal View History

2014-12-17 11:08:42 +00:00
# bitmessage [![Build Status](https://travis-ci.org/bitchan/bitmessage.svg?branch=master)](https://travis-ci.org/bitchan/bitmessage)
2014-12-11 17:57:42 +00:00
2015-02-28 20:02:04 +00:00
[![NPM](https://nodei.co/npm/bitmessage.png?downloads=true)](https://www.npmjs.com/package/bitmessage)
2015-01-21 00:19:35 +00:00
2014-12-28 17:08:41 +00:00
JavaScript Bitmessage library for both browserify and node. The goal of this project is to implement Bitmessage protocol v3 for both platforms at the maximum possible level (we still can't create TCP connections or listen for incoming connections in the Browser but the Proof of work and crypto is fully doable).
Public library API is currently in alpha stage, breaking changes are very likely to happen.
2014-12-28 16:59:57 +00:00
2014-12-30 18:30:12 +00:00
API documentation is available [here](https://bitchan.github.io/bitmessage/docs/).
2014-12-30 17:00:28 +00:00
2014-12-28 16:59:57 +00:00
## References
2015-01-03 16:49:20 +00:00
* [Bitmessage wiki](https://bitmessage.org/wiki/Main_Page)
2023-01-09 03:25:31 +00:00
* [Protocol specification](https://pybitmessage.rtfd.io/en/v0.6/protocol.html)
2014-12-28 16:59:57 +00:00
* [Whitepaper](https://bitmessage.org/bitmessage.pdf)
2015-02-06 17:48:49 +00:00
## Feature matrix
2014-12-28 16:59:57 +00:00
2015-01-15 21:00:27 +00:00
- [x] Crypto
2015-01-16 15:35:40 +00:00
- [x] SHA-1
2014-12-28 16:59:57 +00:00
- [x] SHA-256
2015-01-16 15:35:40 +00:00
- [x] SHA-512
2014-12-28 16:59:57 +00:00
- [x] RIPEMD-160
- [x] PRNG
2015-02-11 20:05:38 +00:00
- [x] ECC keys handling
2014-12-28 16:59:57 +00:00
- [x] ECDSA
2015-01-13 23:36:07 +00:00
- [x] ECIES
2015-01-11 13:59:43 +00:00
- [x] Common structures
2015-01-04 20:59:14 +00:00
- [x] message
- [x] object
2014-12-28 16:59:57 +00:00
- [x] var_int
2015-01-02 14:27:03 +00:00
- [x] var_str
- [x] var_int_list
2015-01-05 23:32:10 +00:00
- [x] net_addr
2015-01-15 21:00:27 +00:00
- [x] inv_vect
2015-01-11 13:59:43 +00:00
- [x] encrypted
2015-01-04 23:40:52 +00:00
- [x] service features
- [x] pubkey features
2015-01-16 00:08:56 +00:00
- [x] Message types
2015-01-15 17:13:02 +00:00
- [x] version
2015-01-15 18:11:33 +00:00
- [x] addr
2015-01-15 21:00:27 +00:00
- [x] inv
2015-01-15 21:07:49 +00:00
- [x] getdata
2015-01-16 00:08:56 +00:00
- [x] error
2015-01-29 18:18:07 +00:00
- [x] Object types
2015-01-18 11:37:09 +00:00
- [x] getpubkey
- [x] pubkey
2015-01-28 20:37:20 +00:00
- [x] msg
2015-01-29 18:18:07 +00:00
- [x] broadcast
- [x] WIF
2015-01-09 21:36:42 +00:00
- [x] POW
2015-01-18 12:34:02 +00:00
- [x] High-level classes
- [x] Address
2023-01-09 03:25:31 +00:00
- [ ] UserAgent
2015-02-11 20:05:38 +00:00
- [ ] PyBitmessage configs parsing
2015-01-02 21:56:54 +00:00
- [ ] keys.dat
- [ ] knownnodes.dat
- [ ] messages.dat
2014-12-28 16:59:57 +00:00
2014-12-13 18:59:48 +00:00
## Usage
2015-01-19 12:08:56 +00:00
### Address
2014-12-13 18:59:48 +00:00
```js
2014-12-28 16:59:57 +00:00
var Address = require("bitmessage").Address;
2015-01-19 12:08:56 +00:00
// Generate a new random Bitmessage identity.
var addr1 = Address.fromRandom();
console.log("New random Bitmessage address:", addr1.encode());
// Or create it from passphrase.
var addr2 = Address.fromPassphrase("test");
console.log("Deterministic Bitmessage address:", addr2.encode());
2014-12-13 18:59:48 +00:00
```
2015-02-12 10:36:44 +00:00
### Structures
```js
var structs = require("bitmessage").structs;
var encoded = Buffer.concat([
structs.var_int.encode(4),
Buffer("test"),
structs.var_str.encode("test2"),
structs.var_int_list.encode([1, 2, 3]),
]);
var decoded1 = structs.var_str.decode(encoded);
console.log(decoded1.str); // test
var decoded2 = structs.var_str.decode(decoded1.rest);
console.log(decoded2.str); // test2
var decoded3 = structs.var_int.decode(decoded2.rest);
console.log(decoded3.value); // 3
var decoded4 = structs.var_int_list.decode(decoded2.rest);
console.log(decoded4.list); // [1, 2, 3]
```
### Messages
```js
var structs = require("bitmessage").structs;
var messages = require("bitmessage").messages;
// Simple encoding and decoding:
var vermsg = messages.version.encode({
remoteHost: "1.1.1.1",
remotePort: 8444,
});
console.log(messages.version.decode(vermsg).remoteHost); // 1.1.1.1
// Low-level encoding and decoding:
var addrPayload = messages.addr.encodePayload([
{host: "2.2.2.2", port: 28444},
]);
var addrmsg = structs.message.encode("addr", addrPayload);
var decoded = structs.message.decode(addrmsg);
console.log(decoded.command); // addr
2015-02-24 18:21:42 +00:00
var addr = messages.addr.decodePayload(decoded.payload);
console.log(addr.addrs[0].host); // 2.2.2.2
2015-02-12 10:36:44 +00:00
// Encode with empty payload:
var verackmsg = structs.message.encode("verack");
console.log(structs.message.decode(verackmsg).command); // verack
```
2015-02-14 10:53:24 +00:00
### Networking
2015-02-12 10:36:44 +00:00
You will need to install [bitmessage-transports](https://github.com/bitchan/bitmessage-transports) library.
2015-02-12 10:36:44 +00:00
```js
var messages = require("bitmessage").messages;
var TcpTransport = require("bitmessage-transports").TcpTransport;
2015-02-12 10:36:44 +00:00
var tcp = new TcpTransport({
dnsSeeds: [["bootstrap8444.bitmessage.org", 8444]],
});
tcp.bootstrap().then(function(nodes) {
var remoteHost = nodes[0][0];
var remotePort = nodes[0][1];
console.log("Connecting to", nodes[0]);
tcp.connect(remotePort, remoteHost);
});
2015-02-24 17:27:41 +00:00
tcp.on("established", function(version) {
console.log("Connection established to", version.userAgent);
2015-02-12 10:36:44 +00:00
tcp.on("message", function(command, payload) {
console.log("Got new", command, "message");
var decoded;
if (command === "addr") {
decoded = messages.addr.decodePayload(payload);
console.log("Got", decoded.addrs.length, "node addresses");
}
});
});
```
2014-12-11 17:57:42 +00:00
## License
bitmessage - JavaScript Bitmessage library
Written in 2014-2015 by Kagami Hiiragi <kagami@genshiken.org>
2014-12-11 17:57:42 +00:00
To the extent possible under law, the author(s) have dedicated all copyright and related and neighboring rights to this software to the public domain worldwide. This software is distributed without any warranty.
You should have received a copy of the CC0 Public Domain Dedication along with this software. If not, see <http://creativecommons.org/publicdomain/zero/1.0/>.