Compare commits

..

5 Commits

Author SHA1 Message Date
92721a5eda Release v0.1.2. 2015-10-29 07:27:50 +00:00
857702dc56 update 2015-10-29 07:27:39 +00:00
c957ae9384 Release v0.1.1. 2015-09-17 02:53:09 +01:00
6be826965e after the great name swap, following https://github.com/diasdavid/node-ipfs-swarm/issues/8#issuecomment-140929746 2015-09-17 02:52:59 +01:00
bad3fbbbd3 add travis 2015-09-16 17:43:45 +01:00
4 changed files with 23 additions and 8 deletions

11
.travis.yml Normal file
View File

@ -0,0 +1,11 @@
sudo: false
language: node_js
node_js:
- "4.0"
# Make sure we have new NPM.
before_install:
- npm install -g npm
script:
- npm test

View File

@ -1,7 +1,10 @@
node-libp2p-tcp
js-libp2p-tcp
===============
[![](https://img.shields.io/badge/made%20by-Protocol%20Labs-blue.svg?style=flat-square)](http://ipn.io) [[![](https://img.shields.io/badge/freenode-%23ipfs-blue.svg?style=flat-square)](http://webchat.freenode.net/?channels=%23ipfs) ![Build Status](https://travis-ci.org/diasdavid/node-libp2p-tcp.svg?style=flat-square)](https://travis-ci.org/diasdavid/node-libp2p-tcp) ![](https://img.shields.io/badge/coverage-%3F-yellow.svg?style=flat-square) [![Dependency Status](https://david-dm.org/diasdavid/node-libp2p-tcp.svg?style=flat-square)](https://david-dm.org/diasdavid/node-libp2p-tcp) [![js-standard-style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg?style=flat-square)](https://github.com/feross/standard)
[![](https://img.shields.io/badge/made%20by-Protocol%20Labs-blue.svg?style=flat-square)](http://ipn.io) [[![](https://img.shields.io/badge/freejs-%23ipfs-blue.svg?style=flat-square)](http://webchat.freenode.net/?channels=%23ipfs) ![Build Status](https://travis-ci.org/diasdavid/js-libp2p-tcp.svg?style=flat-square)](https://travis-ci.org/diasdavid/js-libp2p-tcp) ![](https://img.shields.io/badge/coverage-%3F-yellow.svg?style=flat-square) [![Dependency Status](https://david-dm.org/diasdavid/js-libp2p-tcp.svg?style=flat-square)](https://david-dm.org/diasdavid/js-libp2p-tcp) [![js-standard-style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg?style=flat-square)](https://github.com/feross/standard)
![](https://raw.githubusercontent.com/diasdavid/abstract-connection/master/img/badge.png)
![](https://raw.githubusercontent.com/diasdavid/abstract-transport/master/img/badge.png)
> Node.js implementation of the TCP module that libp2p uses, which implements the [abstract-connection]() interface for dial/listen.

View File

@ -1,6 +1,6 @@
{
"name": "libp2p-tcp",
"version": "0.1.0",
"version": "0.1.2",
"description": "Node.js implementation of the TCP module that libp2p uses, which implements the abstract-connection interface",
"main": "src/index.js",
"scripts": {
@ -9,7 +9,7 @@
"pre-commit": [],
"repository": {
"type": "git",
"url": "https://github.com/diasdavid/node-libp2p-tcp.git"
"url": "https://github.com/diasdavid/js-libp2p-tcp.git"
},
"keywords": [
"IPFS"
@ -17,11 +17,12 @@
"author": "David Dias <daviddias@ipfs.io>",
"license": "MIT",
"bugs": {
"url": "https://github.com/diasdavid/node-libp2p-tcp/issues"
"url": "https://github.com/diasdavid/js-libp2p-tcp/issues"
},
"homepage": "https://github.com/diasdavid/node-libp2p-tcp",
"homepage": "https://github.com/diasdavid/js-libp2p-tcp",
"devDependencies": {
"abstract-connection": "^0.1.0",
"abstract-connection": "0.0.1",
"abstract-transport": "^0.1.0",
"pre-commit": "^1.1.1",
"standard": "^5.2.2",
"tape": "^4.2.0"

View File

@ -1,5 +1,5 @@
var tape = require('tape')
var tests = require('abstract-connection/tests')
var tests = require('abstract-transport/tests')
var conn = require('../src')
var common = {