From 2af97d4e79b1f20435ab364a819b48906883b85a Mon Sep 17 00:00:00 2001 From: David Dias Date: Fri, 11 Dec 2015 20:38:40 -0800 Subject: [PATCH] update name --- README.md | 10 +++++----- package.json | 8 ++++---- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index a35cbe4..e885054 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,9 @@ -abstract-connection +interface-connection ================== [![](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 connection. A connection is understood as something that offers mechanism for writing and reading data, back pressure, half and full duplex streams. This module and test suite were heavily inspired by abstract-blob-store and abstract-stream-muxer. +> A test suite and interface you can use to implement a connection. A connection is understood as something that offers mechanism for writing and reading data, back pressure, half and full duplex streams. This module and test suite were heavily inspired by abstract-blob-store and interface-stream-muxer. The primary goal of module is to enable developers to pick, swap or upgrade their connection without loosing the same API expectations and mechanisms such as back pressure and the hability to half close a connection. @@ -20,9 +20,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-connection 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-connection API. You can validate this by running the tests. -![](https://raw.githubusercontent.com/diasdavid/abstract-connection/master/img/badge.png) +![](https://raw.githubusercontent.com/diasdavid/interface-connection/master/img/badge.png) # How to use the battery of tests @@ -30,7 +30,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-connection/tests') +var tests = require('interface-connection/tests') var YourConnectionHandler = require('../src') var common = { diff --git a/package.json b/package.json index ababa2f..350f9ab 100644 --- a/package.json +++ b/package.json @@ -1,10 +1,10 @@ { - "name": "abstract-connection", + "name": "interface-connection", "version": "0.0.2", "description": "A test suite and interface you can use to implement a connection interface.", "repository": { "type": "git", - "url": "https://github.com/diasdavid/abstract-connection.git" + "url": "https://github.com/diasdavid/interface-connection.git" }, "keywords": [ "IPFS" @@ -12,9 +12,9 @@ "author": "David Dias ", "license": "MIT", "bugs": { - "url": "https://github.com/diasdavid/abstract-connection/issues" + "url": "https://github.com/diasdavid/interface-connection/issues" }, - "homepage": "https://github.com/diasdavid/abstract-connection", + "homepage": "https://github.com/diasdavid/interface-connection", "dependencies": { "timed-tape": "^0.1.0" }