This commit is contained in:
Kagami Hiiragi 2015-02-01 21:52:31 +03:00
parent d2a6528fb3
commit 22c7f7c298
9 changed files with 8 additions and 7 deletions

View File

@ -56,17 +56,15 @@ API documentation is available [here](https://bitchan.github.io/bitmessage/docs/
- [x] High-level classes
- [x] Address
- [x] UserAgent
- [ ] Network
- [ ] TCP (Node.js only)
- [ ] WebSocket
- [ ] WebRTC
- [ ] Parse PyBitmessage configs
- [ ] keys.dat
- [ ] knownnodes.dat
- [ ] messages.dat
## Network feature matrix (Node.js only)
- [ ] Bootstrap
- [ ] Connect to the network
- [ ] Accept connections
## Usage
### Address

0
lib/net/index.js Normal file
View File

0
lib/net/tcp.browser.js Normal file
View File

0
lib/net/tcp.js Normal file
View File

View File

0
lib/net/webrtc.js Normal file
View File

0
lib/net/ws.browser.js Normal file
View File

0
lib/net/ws.js Normal file
View File

View File

@ -4,7 +4,10 @@
"description": "JavaScript Bitmessage library",
"main": "./lib/index.js",
"browser": {
"./lib/platform.js": "./lib/platform.browser.js"
"./lib/platform.js": "./lib/platform.browser.js",
"./lib/net/tcp.js": "./lib/net/tcp.browser.js",
"./lib/net/ws.js": "./lib/net/ws.browser.js",
"./lib/net/webrtc.js": "./lib/net/webrtc.browser.js"
},
"scripts": {
"install": "node-gyp rebuild || exit 0",