chore: clean up content routing

This commit is contained in:
Jacob Heun 2019-10-18 14:20:29 +02:00
parent c9fa1ac249
commit 32f863be86
No known key found for this signature in database
GPG Key ID: CA5A94C15809879F
7 changed files with 2 additions and 221 deletions

View File

@ -1,66 +0,0 @@
{
"name": "interface-connection",
"version": "0.4.1",
"description": "A test suite and interface you can use to implement a connection interface.",
"leadMaintainer": "Jacob Heun <jacobheun@gmail.com>",
"main": "src/index.js",
"files": [
"dist",
"src"
],
"scripts": {
"lint": "aegir lint",
"build": "aegir build",
"test": "aegir test",
"test:node": "aegir test -t node",
"test:browser": "aegir test -t browser -t webworker",
"release": "aegir release",
"release-minor": "aegir release --type minor",
"release-major": "aegir release --type major"
},
"pre-push": [
"lint"
],
"repository": {
"type": "git",
"url": "https://github.com/libp2p/interface-connection.git"
},
"keywords": [
"IPFS"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/libp2p/interface-connection/issues"
},
"homepage": "https://github.com/libp2p/interface-connection",
"dependencies": {
"abortable-iterator": "^2.1.0",
"chai": "^4.2.0",
"class-is": "^1.1.0",
"dirty-chai": "^2.0.1",
"err-code": "^2.0.0",
"multiaddr": "^7.1.0",
"peer-id": "~0.13.2",
"sinon": "^7.5.0"
},
"devDependencies": {
"aegir": "^20.2.0",
"it-pair": "^1.0.0",
"it-pipe": "^1.0.1",
"mocha": "^6.2.0"
},
"engines": {
"node": ">=10.0.0",
"npm": ">=6.0.0"
},
"contributors": [
"David Dias <daviddias.p@gmail.com>",
"Friedel Ziegelmayer <dignifiedquire@gmail.com>",
"Greenkeeper <support@greenkeeper.io>",
"Jacob Heun <jacobheun@gmail.com>",
"James Ray <16969914+jamesray1@users.noreply.github.com>",
"Pau Ramon Revilla <masylum@gmail.com>",
"Richard Littauer <richard.littauer@gmail.com>",
"Vasco Santos <vasco.santos@moxy.studio>"
]
}

View File

@ -1,59 +0,0 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Runtime data
pids
*.pid
*.seed
*.pid.lock
# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov
# Coverage directory used by tools like istanbul
coverage
# nyc test coverage
.nyc_output
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt
# Bower dependency directory (https://bower.io/)
bower_components
# node-waf configuration
.lock-wscript
# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release
# Dependency directories
node_modules/
jspm_packages/
# Typescript v1 declaration files
typings/
# Optional npm cache directory
.npm
# Optional eslint cache
.eslintcache
# Optional REPL history
.node_repl_history
# Output of 'npm pack'
*.tgz
# Yarn Integrity file
.yarn-integrity
# dotenv environment variables file
.env

View File

@ -1,22 +0,0 @@
The MIT License (MIT)
Copyright (c) 2018 David Dias
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

View File

@ -1,10 +1,7 @@
interface-content-routing
=====================
[![](https://img.shields.io/badge/made%20by-Protocol%20Labs-blue.svg?style=flat-square)](http://protocol.ai)
[![](https://img.shields.io/badge/project-libp2p-yellow.svg?style=flat-square)](http://libp2p.io/)
[![](https://img.shields.io/badge/freenode-%23libp2p-yellow.svg?style=flat-square)](http://webchat.freenode.net/?channels=%23libp2p)
[![Discourse posts](https://img.shields.io/discourse/https/discuss.libp2p.io/posts.svg)](https://discuss.libp2p.io)
**WIP: This module is not yet implemented**
> A test suite and interface you can use to implement a Content Routing module for libp2p.
@ -12,12 +9,6 @@ The primary goal of this module is to enable developers to pick and swap their C
Publishing a test suite as a module lets multiple modules all ensure compatibility since they use the same test suite.
The API is presented with both Node.js and Go primitives, however, there is not actual limitations for it to be extended for any other language, pushing forward the cross compatibility and interop through diferent stacks.
## Lead Maintainer
[Vasco Santos](https://github.com/vasco-santos).
# Modules that implement the interface
- [JavaScript libp2p-kad-dht](https://github.com/libp2p/js-libp2p-kad-dht)
@ -34,26 +25,7 @@ Include this badge in your readme if you make a module that is compatible with t
## Node.js
```javascript
var tape = require('tape')
var tests = require('interface-content-routing/tests')
var yourImpl = require('../src')
var common = {
setup: function (t, cb) {
cb(null, yourImpl)
},
teardown: function (t, cb) {
cb()
}
}
tests(tape, common)
```
## Go
> WIP - The go-libp2p implementation does not have a test suite to be used, yet.
TBD
# API
@ -61,8 +33,4 @@ A valid (read: that follows this abstraction) Content Routing module must implem
### `.findProviders`
- `JavaScript` peerRouting.findProviders
### `.provide`
- `JavaScript` peerRouting.provide

View File

@ -1,23 +0,0 @@
{
"name": "interface-content-routing",
"version": "0.0.0",
"description": "A test suite and interface you can use to implement a Content Routing for libp2p.",
"leadMaintainer": "Vasco Santos <vasco.santos@moxy.studio>",
"repository": {
"type": "git",
"url": "https://github.com/libp2p/interface-content-routing.git"
},
"keywords": [
"IPFS"
],
"author": "David Dias <daviddias@ipfs.io>",
"license": "MIT",
"bugs": {
"url": "https://github.com/libp2p/interface-content-routing/issues"
},
"homepage": "https://github.com/libp2p/interface-content-routing",
"devDependencies": {},
"dependencies": {
"timed-tape": "^0.1.1"
}
}

View File

@ -1,10 +0,0 @@
'use strict'
module.exports.all = function (test, common) {
test('test', function (t) {
common.setup(test, function (err, pr) {
if (err) {}
common.teardown()
})
})
}

View File

@ -1,7 +0,0 @@
'use strict'
const timed = require('timed-tape')
module.exports = function (test, common) {
test = timed(test)
require('./base-test.js').all(test, common)
}