update name

This commit is contained in:
David Dias 2015-12-11 20:23:03 -08:00
parent 9b2678f7d2
commit ec2446f951
2 changed files with 9 additions and 9 deletions

View File

@ -1,11 +1,11 @@
abstract-peer-routing
interface-peer-routing
=====================
[![](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)
> A test suite and interface you can use to implement a Peer Routing module for libp2p.
The primary goal of this module is to enable developers to pick and swap their Peer Routing module as they see fit for their libp2p installation, without having to go through shims or compatibility issues. This module and test suite were heavily inspired by abstract-blob-store and abstract-stream-muxer.
The primary goal of this module is to enable developers to pick and swap their Peer Routing module as they see fit for their libp2p installation, without having to go through shims or compatibility issues. This module and test suite were heavily inspired by abstract-blob-store and interface-stream-muxer.
Publishing a test suite as a module lets multiple modules all ensure compatibility since they use the same test suite.
@ -17,9 +17,9 @@ The API is presented with both Node.js and Go primitives, however, there is not
# Badge
Include this badge in your readme if you make a module that is compatible with the abstract-record-store API. You can validate this by running the tests.
Include this badge in your readme if you make a module that is compatible with the interface-record-store API. You can validate this by running the tests.
![](https://raw.githubusercontent.com/diasdavid/abstract-peer-routing/master/img/badge.png)
![](https://raw.githubusercontent.com/diasdavid/interface-peer-routing/master/img/badge.png)
# How to use the battery of tests
@ -27,7 +27,7 @@ Include this badge in your readme if you make a module that is compatible with t
```
var tape = require('tape')
var tests = require('abstract-peer-routing/tests')
var tests = require('interface-peer-routing/tests')
var YourPeerRouter = require('../src')
var common = {

View File

@ -1,10 +1,10 @@
{
"name": "abstract-peer-routing",
"name": "interface-peer-routing",
"version": "0.1.1",
"description": "A test suite and interface you can use to implement a Peer Routing for libp2p.",
"repository": {
"type": "git",
"url": "https://github.com/diasdavid/abstract-peer-routing.git"
"url": "https://github.com/diasdavid/interface-peer-routing.git"
},
"keywords": [
"IPFS"
@ -12,9 +12,9 @@
"author": "David Dias <daviddias@ipfs.io>",
"license": "MIT",
"bugs": {
"url": "https://github.com/diasdavid/abstract-peer-routing/issues"
"url": "https://github.com/diasdavid/interface-peer-routing/issues"
},
"homepage": "https://github.com/diasdavid/abstract-peer-routing",
"homepage": "https://github.com/diasdavid/interface-peer-routing",
"devDependencies": {},
"dependencies": {
"peer-id": "^0.3.3",