diff --git a/.github/dependabot.yml b/.github/dependabot.yml
new file mode 100644
index 0000000000..0bc3b42de8
--- /dev/null
+++ b/.github/dependabot.yml
@@ -0,0 +1,11 @@
+version: 2
+updates:
+- package-ecosystem: npm
+ directory: "/"
+ schedule:
+ interval: daily
+ time: "10:00"
+ open-pull-requests-limit: 10
+ commit-message:
+ prefix: "deps"
+ prefix-development: "deps(dev)"
diff --git a/.github/workflows/bundlesize.yml b/.github/workflows/bundlesize.yml
deleted file mode 100644
index dad3e1ab7d..0000000000
--- a/.github/workflows/bundlesize.yml
+++ /dev/null
@@ -1,34 +0,0 @@
-# Checks bundlesize, does not run on master
-on:
- pull_request:
- branches:
- - '*'
-
-name: Bundlesize
-jobs:
- check:
- runs-on: ubuntu-latest # https://github.com/actions/virtual-environments/blob/main/images/linux/Ubuntu1804-README.md
- strategy:
- matrix:
- node-version: [14.x]
- project:
- - packages/ipfs
- - packages/ipfs-core
- - packages/ipfs-client
- - packages/ipfs-grpc-client
- - packages/ipfs-http-client
- - packages/ipfs-message-port-client
- steps:
- - uses: actions/checkout@v2
- - name: Use Node.js ${{ matrix.node-version }}
- uses: actions/setup-node@v1
- with:
- node-version: ${{ matrix.node-version }}
- - uses: actions/checkout@v2
- - run: npm install
- - name: Bundlesize ${{ matrix.project }}
- uses: ipfs/aegir/actions/bundle-size@v32.1.0
- continue-on-error: true
- with:
- project: ${{ matrix.project }}
- github_token: ${{ secrets.GITHUB_TOKEN }}
diff --git a/.github/workflows/dependency-review.yml b/.github/workflows/dependency-review.yml
new file mode 100644
index 0000000000..fe461b4243
--- /dev/null
+++ b/.github/workflows/dependency-review.yml
@@ -0,0 +1,20 @@
+# Dependency Review Action
+#
+# This Action will scan dependency manifest files that change as part of a Pull Request, surfacing known-vulnerable versions of the packages declared or updated in the PR. Once installed, if the workflow run is marked as required, PRs introducing known-vulnerable packages will be blocked from merging.
+#
+# Source repository: https://github.com/actions/dependency-review-action
+# Public documentation: https://docs.github.com/en/code-security/supply-chain-security/understanding-your-software-supply-chain/about-dependency-review#dependency-review-enforcement
+name: 'Dependency Review'
+on: [pull_request]
+
+permissions:
+ contents: read
+
+jobs:
+ dependency-review:
+ runs-on: ubuntu-latest
+ steps:
+ - name: 'Checkout Repository'
+ uses: actions/checkout@v3
+ - name: 'Dependency Review'
+ uses: actions/dependency-review-action@v2
diff --git a/.github/workflows/examples.yml b/.github/workflows/examples.yml
new file mode 100644
index 0000000000..d876b0a7c7
--- /dev/null
+++ b/.github/workflows/examples.yml
@@ -0,0 +1,130 @@
+name: Examples
+on:
+ push:
+ branches:
+ - master
+ pull_request:
+ branches:
+ - '**'
+
+jobs:
+
+ build:
+ name: Build
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v2
+ - uses: actions/setup-node@v2
+ with:
+ node-version: lts/*
+ - uses: ipfs/aegir/actions/cache-node-modules@master
+
+ # test-examples:
+ # name: Test example ${{ matrix.example.name }}
+ # needs: build
+ # runs-on: ubuntu-latest
+ # continue-on-error: true
+ # strategy:
+ # matrix:
+ # example:
+ # - name: ipfs browser add readable stream
+ # repo: https://github.com/ipfs-examples/js-ipfs-browser-add-readable-stream.git
+ # deps: ipfs-core@$PWD/packages/ipfs-core
+ # - name: ipfs browser angular
+ # repo: https://github.com/ipfs-examples/js-ipfs-browser-angular.git
+ # deps: ipfs-core@$PWD/packages/ipfs-core,ipfs-core-types@$PWD/packages/ipfs-core-types
+ # - name: ipfs browser browserify
+ # repo: https://github.com/ipfs-examples/js-ipfs-browser-browserify.git
+ # deps: ipfs-core@$PWD/packages/ipfs-core
+ # - name: ipfs browser react
+ # repo: https://github.com/ipfs-examples/js-ipfs-browser-create-react-app.git
+ # deps: ipfs-core@$PWD/packages/ipfs-core
+ # - name: ipfs browser exchange files
+ # repo: https://github.com/ipfs-examples/js-ipfs-browser-exchange-files.git
+ # deps: ipfs-core@$PWD/packages/ipfs-core,ipfs@$PWD/packages/ipfs,ipfs-core-types@$PWD/packages/ipfs-core-types,ipfs-http-client@$PWD/packages/ipfs-http-client
+ # - name: ipfs browser ipns publish
+ # repo: https://github.com/ipfs-examples/js-ipfs-browser-ipns-publish.git
+ # deps: ipfs-core@$PWD/packages/ipfs-core,ipfs-http-client@$PWD/packages/ipfs-http-client
+ # - name: ipfs browser mfs
+ # repo: https://github.com/ipfs-examples/js-ipfs-browser-mfs.git
+ # deps: ipfs-core@$PWD/packages/ipfs-core
+ # # fails with No native build was found for platform=darwin arch=x64 runtime=node abi=93 uv=1 libc=glibc node=16.13.0 webpack=true
+ # #- name: ipfs browser nextjs
+ # # repo: https://github.com/ipfs-examples/js-ipfs-browser-nextjs.git
+ # # deps: ipfs-core@$PWD/packages/ipfs-core
+ # - name: ipfs browser parceljs
+ # repo: https://github.com/ipfs-examples/js-ipfs-browser-parceljs.git
+ # deps: ipfs-core@$PWD/packages/ipfs-core
+ # - name: ipfs browser readable stream
+ # repo: https://github.com/ipfs-examples/js-ipfs-browser-readablestream.git
+ # deps: ipfs-core@$PWD/packages/ipfs-core
+ # - name: ipfs browser service worker
+ # repo: https://github.com/ipfs-examples/js-ipfs-browser-service-worker.git
+ # deps: ipfs-core@$PWD/packages/ipfs-core,ipfs-message-port-client@$PWD/packages/ipfs-message-port-client,ipfs-message-port-protocol@$PWD/packages/ipfs-message-port-protocol,ipfs-message-port-server@$PWD/packages/ipfs-message-port-server
+ # - name: ipfs browser sharing across tabs
+ # repo: https://github.com/ipfs-examples/js-ipfs-browser-sharing-node-across-tabs.git
+ # deps: ipfs-core@$PWD/packages/ipfs-core,ipfs-message-port-client@$PWD/packages/ipfs-message-port-client,ipfs-message-port-server@$PWD/packages/ipfs-message-port-server
+ # - name: ipfs browser video streaming
+ # repo: https://github.com/ipfs-examples/js-ipfs-browser-video-streaming.git
+ # deps: ipfs-core@$PWD/packages/ipfs-core
+ # - name: ipfs browser vue
+ # repo: https://github.com/ipfs-examples/js-ipfs-browser-vue.git
+ # deps: ipfs-core@$PWD/packages/ipfs-core
+ # - name: ipfs browser webpack
+ # repo: https://github.com/ipfs-examples/js-ipfs-browser-webpack.git
+ # deps: ipfs-core@$PWD/packages/ipfs-core
+ # - name: ipfs circuit relaying
+ # repo: https://github.com/ipfs-examples/js-ipfs-circuit-relaying.git
+ # deps: ipfs-core@$PWD/packages/ipfs-core,ipfs-http-client@$PWD/packages/ipfs-http-client
+ # - name: ipfs custom ipfs repo
+ # repo: https://github.com/ipfs-examples/js-ipfs-custom-ipfs-repo.git
+ # deps: ipfs-core@$PWD/packages/ipfs-core
+ # - name: ipfs custom ipld formats
+ # repo: https://github.com/ipfs-examples/js-ipfs-custom-ipld-formats.git
+ # deps: ipfs-core@$PWD/packages/ipfs-core,ipfs-daemon@$PWD/packages/ipfs-daemon,ipfs-http-client@$PWD/packages/ipfs-http-client
+ # - name: ipfs custom libp2p
+ # repo: https://github.com/ipfs-examples/js-ipfs-custom-libp2p.git
+ # deps: ipfs-core@$PWD/packages/ipfs-core
+ # - name: ipfs-http-client browser pubsub
+ # repo: https://github.com/ipfs-examples/js-ipfs-http-client-browser-pubsub.git
+ # deps: ipfs-http-client@$PWD/packages/ipfs-http-client,ipfs@$PWD/packages/ipfs
+ # - name: ipfs-http-client bundle webpack
+ # repo: https://github.com/ipfs-examples/js-ipfs-http-client-bundle-webpack.git
+ # deps: ipfs-http-client@$PWD/packages/ipfs-http-client,ipfs@$PWD/packages/ipfs
+ # - name: ipfs-http-client name api
+ # repo: https://github.com/ipfs-examples/js-ipfs-http-client-name-api.git
+ # deps: ipfs-http-client@$PWD/packages/ipfs-http-client
+ # - name: ipfs-http-client upload file
+ # repo: https://github.com/ipfs-examples/js-ipfs-http-client-upload-file.git
+ # deps: ipfs@$PWD/packages/ipfs,ipfs-http-client@$PWD/packages/ipfs-http-client
+ # - name: ipfs 101
+ # repo: https://github.com/ipfs-examples/js-ipfs-101.git
+ # deps: ipfs-core@$PWD/packages/ipfs-core
+ # - name: ipfs-client add files
+ # repo: https://github.com/ipfs-examples/js-ipfs-ipfs-client-add-files.git
+ # deps: ipfs@$PWD/packages/ipfs,ipfs-client@$PWD/packages/ipfs-client
+ # - name: ipfs electron js
+ # repo: https://github.com/ipfs-examples/js-ipfs-run-in-electron.git
+ # deps: ipfs-core@$PWD/packages/ipfs-core
+ # - name: ipfs running multiple nodes
+ # repo: https://github.com/ipfs-examples/js-ipfs-running-multiple-nodes.git
+ # deps: ipfs@$PWD/packages/ipfs
+ # - name: ipfs traverse ipld graphs
+ # repo: https://github.com/ipfs-examples/js-ipfs-traverse-ipld-graphs.git
+ # deps: ipfs-core@$PWD/packages/ipfs-core
+ # - name: types with typescript
+ # repo: https://github.com/ipfs-examples/js-ipfs-types-use-ipfs-from-ts.git
+ # deps: ipfs-core@$PWD/packages/ipfs-core
+ # - name: types with typed js
+ # repo: https://github.com/ipfs-examples/js-ipfs-types-use-ipfs-from-typed-js.git
+ # deps: ipfs-core@$PWD/packages/ipfs-core
+ # steps:
+ # - uses: actions/checkout@v2
+ # - uses: actions/setup-node@v2
+ # with:
+ # node-version: lts/*
+ # - uses: ipfs/aegir/actions/cache-node-modules@master
+ # - uses: GabrielBB/xvfb-action@v1
+ # name: Run npm run test:external -- -- -- ${{ matrix.example.repo }} --deps ${{ matrix.example.deps }}
+ # with:
+ # run: npm run test:external -- -- -- ${{ matrix.example.repo }} --deps ${{ matrix.example.deps }}
diff --git a/.github/workflows/externals.yml b/.github/workflows/externals.yml
new file mode 100644
index 0000000000..5ba3536c01
--- /dev/null
+++ b/.github/workflows/externals.yml
@@ -0,0 +1,51 @@
+name: Externals
+on:
+ push:
+ branches:
+ - master
+ pull_request:
+ branches:
+ - '**'
+
+jobs:
+
+ build:
+ name: Build
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v2
+ - uses: actions/setup-node@v2
+ with:
+ node-version: lts/*
+ - uses: ipfs/aegir/actions/cache-node-modules@master
+
+ test-externals:
+ name: Test external ${{ matrix.external.name }}
+ needs: build
+ runs-on: ubuntu-latest
+ strategy:
+ matrix:
+ external:
+ - name: ipfs webui
+ repo: https://github.com/ipfs-shipyard/ipfs-webui.git
+ deps: ipfs@$PWD/packages/ipfs
+ - name: ipfs companion
+ repo: https://github.com/ipfs-shipyard/ipfs-companion.git
+ deps: ipfs@$PWD/packages/ipfs
+ - name: orbit-db-io
+ repo: https://github.com/orbitdb/orbit-db-io.git
+ deps: ipfs@$PWD/packages/ipfs
+ - name: ipfs-log
+ repo: https://github.com/orbitdb/ipfs-log.git
+ deps: ipfs@$PWD/packages/ipfs,orbit-db-io@next
+ steps:
+ - uses: actions/checkout@v2
+ - uses: actions/setup-node@v2
+ with:
+ node-version: lts/*
+ - uses: ipfs/aegir/actions/cache-node-modules@master
+ - uses: GabrielBB/xvfb-action@v1
+ name: Run npm run test:external -- -- -- ${{ matrix.external.repo }} --deps ${{ matrix.external.deps }} --branch ${{ matrix.external.branch }}
+ continue-on-error: true
+ with:
+ run: npm run test:external -- -- -- ${{ matrix.external.repo }} --deps ${{ matrix.external.deps }} --branch ${{ matrix.external.branch }}
diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml
new file mode 100644
index 0000000000..6f6d895d19
--- /dev/null
+++ b/.github/workflows/stale.yml
@@ -0,0 +1,26 @@
+name: Close and mark stale issue
+
+on:
+ schedule:
+ - cron: '0 0 * * *'
+
+jobs:
+ stale:
+
+ runs-on: ubuntu-latest
+ permissions:
+ issues: write
+ pull-requests: write
+
+ steps:
+ - uses: actions/stale@v3
+ with:
+ repo-token: ${{ secrets.GITHUB_TOKEN }}
+ stale-issue-message: 'Oops, seems like we needed more information for this issue, please comment with more details or this issue will be closed in 7 days.'
+ close-issue-message: 'This issue was closed because it is missing author input.'
+ stale-issue-label: 'kind/stale'
+ any-of-labels: 'need/author-input'
+ exempt-issue-labels: 'need/triage,need/community-input,need/maintainer-input,need/maintainers-input,need/analysis,status/blocked,status/in-progress,status/ready,status/deferred,status/inactive'
+ days-before-issue-stale: 6
+ days-before-issue-close: 7
+ enable-statistics: true
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
new file mode 100644
index 0000000000..b16ab31931
--- /dev/null
+++ b/.github/workflows/test.yml
@@ -0,0 +1,271 @@
+name: Test
+on:
+ push:
+ branches:
+ - master
+ pull_request:
+ branches:
+ - '**'
+
+jobs:
+
+ build:
+ name: Build
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v2
+ - uses: actions/setup-node@v2
+ with:
+ node-version: lts/*
+ - uses: ipfs/aegir/actions/cache-node-modules@master
+
+ check:
+ name: Check
+ needs: build
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v2
+ - uses: actions/setup-node@v2
+ with:
+ node-version: lts/*
+ - uses: ipfs/aegir/actions/cache-node-modules@master
+ - run: |
+ npm run lint
+ npm run dep-check -- -- -- -p
+ npm run dep-check -- -- -- -- --unused
+
+ test-node:
+ name: Unit tests node ${{ matrix.node }} ${{ matrix.os }}
+ needs: build
+ runs-on: ${{ matrix.os }}
+ strategy:
+ matrix:
+ os: [ubuntu-latest, macos-latest]
+ node: [16]
+ steps:
+ - uses: actions/checkout@v2
+ with:
+ fetch-depth: 0
+ - uses: actions/setup-node@v2
+ with:
+ node-version: ${{ matrix.node }}
+ - uses: ipfs/aegir/actions/cache-node-modules@master
+ - run: npx lerna run test:node --since ${{ github.event.pull_request.base.sha }} --concurrency 1
+ - uses: codecov/codecov-action@f32b3a3741e1053eb607407145bc9619351dc93b # v2.1.0
+ with:
+ flags: node
+
+ test-chrome:
+ name: Unit tests chrome
+ needs: build
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v2
+ with:
+ fetch-depth: 0
+ - uses: actions/setup-node@v2
+ with:
+ node-version: lts/*
+ - uses: ipfs/aegir/actions/cache-node-modules@master
+ - run: npx lerna run test:chrome --since ${{ github.event.pull_request.base.sha }} --concurrency 1
+ - uses: codecov/codecov-action@f32b3a3741e1053eb607407145bc9619351dc93b # v2.1.0
+ with:
+ flags: chrome
+
+ test-chrome-webworker:
+ name: Unit tests chrome-webworker
+ needs: build
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v2
+ with:
+ fetch-depth: 0
+ - uses: actions/setup-node@v2
+ with:
+ node-version: lts/*
+ - uses: ipfs/aegir/actions/cache-node-modules@master
+ - run: npx lerna run test:chrome-webworker --since ${{ github.event.pull_request.base.sha }} --concurrency 1
+ - uses: codecov/codecov-action@f32b3a3741e1053eb607407145bc9619351dc93b # v2.1.0
+ with:
+ flags: chrome-webworker
+
+ test-firefox:
+ name: Unit tests firefox
+ needs: build
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v2
+ with:
+ fetch-depth: 0
+ - uses: actions/setup-node@v2
+ with:
+ node-version: lts/*
+ - uses: ipfs/aegir/actions/cache-node-modules@master
+ - run: npx lerna run test:firefox --since ${{ github.event.pull_request.base.sha }} --concurrency 1
+ - uses: codecov/codecov-action@f32b3a3741e1053eb607407145bc9619351dc93b # v2.1.0
+ with:
+ flags: firefox
+
+ test-firefox-webworker:
+ name: Unit tests firefox-webworker
+ needs: build
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v2
+ with:
+ fetch-depth: 0
+ - uses: actions/setup-node@v2
+ with:
+ node-version: lts/*
+ - uses: ipfs/aegir/actions/cache-node-modules@master
+ - run: npx playwright install --with-deps
+ - run: npx lerna run test:firefox-webworker --since ${{ github.event.pull_request.base.sha }} --concurrency 1
+ - uses: codecov/codecov-action@f32b3a3741e1053eb607407145bc9619351dc93b # v2.1.0
+ with:
+ flags: firefox-webworker
+
+ test-electron-main:
+ name: Unit tests electron-main
+ needs: build
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v2
+ with:
+ fetch-depth: 0
+ - uses: actions/setup-node@v2
+ with:
+ node-version: lts/*
+ - uses: ipfs/aegir/actions/cache-node-modules@master
+ - uses: GabrielBB/xvfb-action@v1
+ with:
+ run: npx lerna run test:electron-main --since ${{ github.event.pull_request.base.sha }} --concurrency 1 -- -- --bail
+ - uses: codecov/codecov-action@f32b3a3741e1053eb607407145bc9619351dc93b # v2.1.0
+ with:
+ flags: electron-main
+
+ test-interop:
+ name: Interop tests ${{ matrix.project }} ${{ matrix.type }}
+ runs-on: ubuntu-latest
+ strategy:
+ matrix:
+ type:
+ - node
+ - browser
+ #- electron-main
+ steps:
+ - uses: actions/checkout@v2
+ with:
+ fetch-depth: 0
+ - uses: actions/setup-node@v2
+ with:
+ node-version: lts/*
+ - uses: ipfs/aegir/actions/cache-node-modules@master
+ - run: npm install
+ - run: npm run build
+ - run: npx lerna run test:interop --since ${{ github.event.pull_request.base.sha }} --concurrency 1 -- -- -t ${{ matrix.type }} --bail
+ - uses: codecov/codecov-action@f32b3a3741e1053eb607407145bc9619351dc93b # v2.1.0
+ with:
+ flags: interop-${{ matrix.type }}
+
+ test-interface:
+ name: Interface tests ${{ matrix.suite }} ${{ matrix.type }}
+ runs-on: ubuntu-latest
+ strategy:
+ matrix:
+ type:
+ - node
+ - browser
+ #- electron-main
+ suite:
+ - test:interface:core
+ - test:interface:client
+ - test:interface:http-go
+ - test:interface:http-js
+ steps:
+ - uses: actions/checkout@v2
+ with:
+ fetch-depth: 0
+ - uses: actions/setup-node@v2
+ with:
+ node-version: lts/*
+ - run: npm install
+ - run: npm run build
+ - run: npx lerna run ${{ matrix.suite }} --since ${{ github.event.pull_request.base.sha }} --concurrency 1 -- -t ${{ matrix.type }} --bail
+ - uses: codecov/codecov-action@f32b3a3741e1053eb607407145bc9619351dc93b # v2.1.0
+ with:
+ flags: interface-${{ matrix.type }}
+
+ test-interface-message-port-client:
+ name: Interface tests test:interface:message-port-client browser
+ needs: build
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v2
+ with:
+ fetch-depth: 0
+ - uses: actions/setup-node@v2
+ with:
+ node-version: lts/*
+ - uses: ipfs/aegir/actions/cache-node-modules@master
+ - run: npx playwright install --with-deps
+ - run: npx lerna run test:interface:message-port-client --since ${{ github.event.pull_request.base.sha }} --concurrency 1 -- -- --bail
+
+ release:
+ runs-on: ubuntu-latest
+ needs: [
+ test-node,
+ test-chrome,
+ test-chrome-webworker,
+ test-firefox,
+ test-firefox-webworker,
+ test-electron-main,
+ test-interop,
+ test-interface,
+ test-interface-message-port-client
+ ]
+ if: github.event_name == 'push' && github.ref == 'refs/heads/master'
+ steps:
+ - uses: GoogleCloudPlatform/release-please-action@v2
+ id: release
+ with:
+ token: ${{ secrets.GITHUB_TOKEN }}
+ command: manifest
+ release-type: node
+ manifest-file: .release-please-manifest.json
+ config-file: .release-please.json
+ changelog-types: |
+ [
+ { "type": "feat", "section": "Features", "hidden": false },
+ { "type": "fix", "section": "Bug Fixes", "hidden": false },
+ { "type": "chore", "section": "Trivial Changes", "hidden": false },
+ { "type": "docs", "section": "Documentation", "hidden": false },
+ { "type": "deps", "section": "Dependencies", "hidden": false }
+ ]
+ - uses: actions/checkout@v2
+ with:
+ fetch-depth: 0
+ - uses: actions/setup-node@v2
+ with:
+ node-version: lts/*
+ registry-url: 'https://registry.npmjs.org'
+ - uses: ipfs/aegir/actions/cache-node-modules@master
+ - uses: ipfs/aegir/actions/docker-login@master
+ with:
+ docker-token: ${{ secrets.DOCKER_TOKEN }}
+ docker-username: ${{ secrets.DOCKER_USERNAME }}
+ - if: ${{ steps.release.outputs.releases_created }}
+ name: Run release version
+ run: |
+ git update-index --assume-unchanged packages/ipfs-core/src/version.js packages/ipfs-http-server/src/version.js packages/ipfs/src/package.js
+ npm run --if-present release
+ env:
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
+ - if: ${{ !steps.release.outputs.releases_created }}
+ name: Run release rc
+ run: |
+ git config --global user.email "github-actions[bot]@users.noreply.github.com"
+ git config --global user.name "github-actions[bot]"
+ git update-index --assume-unchanged packages/ipfs-core/src/version.js packages/ipfs-http-server/src/version.js packages/ipfs/src/package.js
+ npm run --if-present release:rc
+ env:
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
diff --git a/.github/workflows/typecheck.yml b/.github/workflows/typecheck.yml
deleted file mode 100644
index b64158cba4..0000000000
--- a/.github/workflows/typecheck.yml
+++ /dev/null
@@ -1,43 +0,0 @@
-on:
- pull_request:
- branches:
- - '*'
-
-name: Typecheck
-jobs:
- check:
- runs-on: ubuntu-latest
- strategy:
- matrix:
- node-version: [14.x]
- project:
- - packages/ipfs
- - packages/ipfs-cli
- - packages/ipfs-client
- - packages/ipfs-core
- - packages/ipfs-core-types
- - packages/ipfs-core-utils
- - packages/ipfs-daemon
- - packages/ipfs-grpc-client
- - packages/ipfs-grpc-server
- - packages/ipfs-http-client
- - packages/ipfs-http-gateway
- - packages/ipfs-http-server
- - packages/ipfs-message-port-client
- - packages/ipfs-message-port-protocol
- - packages/ipfs-message-port-server
- steps:
- - uses: actions/checkout@v2
- - name: Use Node.js ${{ matrix.node-version }}
- uses: actions/setup-node@v1
- with:
- node-version: ${{ matrix.node-version }}
- - name: Install dependencies
- run: npm install
- - name: Build types
- run: npm run build
- - name: Typecheck ${{ matrix.project }}
- uses: gozala/typescript-error-reporter-action@v1.0.8
- with:
- project: ${{ matrix.project }}
-
diff --git a/.gitignore b/.gitignore
index 4da7986f91..7ebda0ab08 100644
--- a/.gitignore
+++ b/.gitignore
@@ -4,9 +4,11 @@ logs
npm-debug.log*
package-lock.json
yarn.lock
+tsconfig-types.aegir.json
# Coverage directory used by tools like istanbul
coverage
+.coverage
.nyc_output
tests_output
cache
@@ -21,6 +23,7 @@ dist
build
bundle.js
tsconfig-types.aegir.json
+tsconfig-check.aegir.json
.tsbuildinfo
# Deployment files
@@ -31,3 +34,4 @@ tsconfig-types.aegir.json
# Operating system files
.DS_Store
+types
\ No newline at end of file
diff --git a/.release-please-manifest.json b/.release-please-manifest.json
new file mode 100644
index 0000000000..6f9bc03873
--- /dev/null
+++ b/.release-please-manifest.json
@@ -0,0 +1 @@
+{"packages/interface-ipfs-core":"0.157.0","packages/ipfs":"0.65.0","packages/ipfs-cli":"0.15.0","packages/ipfs-client":"0.9.2","packages/ipfs-core":"0.17.0","packages/ipfs-core-config":"0.6.0","packages/ipfs-core-types":"0.13.0","packages/ipfs-core-utils":"0.17.0","packages/ipfs-daemon":"0.15.0","packages/ipfs-grpc-client":"0.12.0","packages/ipfs-grpc-protocol":"0.7.0","packages/ipfs-grpc-server":"0.11.0","packages/ipfs-http-client":"59.0.0","packages/ipfs-http-gateway":"0.12.0","packages/ipfs-http-response":"5.0.0","packages/ipfs-http-server":"0.14.0","packages/ipfs-message-port-client":"0.14.0","packages/ipfs-message-port-protocol":"0.14.0","packages/ipfs-message-port-server":"0.14.0"}
\ No newline at end of file
diff --git a/.release-please.json b/.release-please.json
new file mode 100644
index 0000000000..ef11a9e9bb
--- /dev/null
+++ b/.release-please.json
@@ -0,0 +1,26 @@
+{
+ "plugins": ["node-workspace"],
+ "bump-minor-pre-major": true,
+ "group-pull-request-title-pattern": "chore: release ${component}",
+ "packages": {
+ "packages/interface-ipfs-core": {},
+ "packages/ipfs": {},
+ "packages/ipfs-cli": {},
+ "packages/ipfs-client": {},
+ "packages/ipfs-core": {},
+ "packages/ipfs-core-config": {},
+ "packages/ipfs-core-types": {},
+ "packages/ipfs-core-utils": {},
+ "packages/ipfs-daemon": {},
+ "packages/ipfs-grpc-client": {},
+ "packages/ipfs-grpc-protocol": {},
+ "packages/ipfs-grpc-server": {},
+ "packages/ipfs-http-client": {},
+ "packages/ipfs-http-gateway": {},
+ "packages/ipfs-http-response": {},
+ "packages/ipfs-http-server": {},
+ "packages/ipfs-message-port-client": {},
+ "packages/ipfs-message-port-protocol": {},
+ "packages/ipfs-message-port-server": {}
+ }
+}
diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index b3320469b2..0000000000
--- a/.travis.yml
+++ /dev/null
@@ -1,372 +0,0 @@
-language: node_js
-dist: bionic
-
-cache:
- # https://travis-ci.community/t/npm-cache-on-windows-supplies-incorrect-dependency-versions/11335
- npm: false
-
-services:
- - xvfb
-
-branches:
- only:
- - master
- - /^release\/.*$/
-
-stages:
- - test
- - release-rc
- - release-docker
- - test-external
-
-node_js:
- - 'lts/*'
- - 'node'
-
-os:
- - linux
- - osx
- - windows
-
-env:
- # This stops Windows builds from hanging
- # https://travis-ci.community/t/timeout-after-build-finished-and-succeeded/1336
- - YARN_GPG=no
-
-addons:
- apt:
- packages:
- # # These are required to run webkit
- # - libwoff1
- # - libopus0
- # - libwebp6
- # - libwebpdemux2
- # - libenchant1c2a
- # - libgudev-1.0-0
- # - libsecret-1-0
- # - libhyphen0
- # - libgdk-pixbuf2.0-0
- # - libegl1
- # - libgles2
- # - libevent-2.1-6
- # - libnotify4
- # - libxslt1.1
- # - libvpx5
- # # gstreamer and plugins to support video playback in WebKit.
- # - gstreamer1.0-gl
- # - gstreamer1.0-plugins-base
- # - gstreamer1.0-plugins-good
- # - gstreamer1.0-plugins-bad
- # This is required to run chromium
- - libgbm1
- chrome: stable
-
-before_install:
- # prevents windows error: npm ERR! ... git-sh-setup: file not found
- - if [ "$TRAVIS_OS_NAME" = "windows" ]; then export PATH=/c/PROGRA~1/Git/usr/bin:/c/PROGRA~1/Git/mingw64/libexec/git-core:$PATH ; fi
- # only run jobs in packages that have changed since master in PR builds
- - if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then export RUN_SINCE='--since master' ; fi
-
-script:
- - npm run test:node -- $RUN_SINCE -- -- --timeout 10000 --bail -- --exit # TODO remove --exit https://mochajs.org/#-exit
-
-jobs:
- allow_failures:
- - name: external - ipfs-webui
- - name: external - ipfs-companion
- - name: external - npm-on-ipfs
- - name: external - peer-base
- - name: external - service-worker-gateway
- - name: external - orbit-db
- - name: external - ipfs-log
-
- include:
- - stage: test
- name: lint
- script:
- - npm run lint -- $RUN_SINCE --concurrency 1
-
- - stage: test
- name: dep-check (production deps)
- script:
- - npm run dep-check -- $RUN_SINCE -- -- -p
-
- - stage: test
- name: dep-check (unused deps)
- script:
- - npm run dep-check -- $RUN_SINCE -- -- -- --unused
-
- - stage: test
- name: chrome
- script:
- - npm run test:browser -- $RUN_SINCE -- -- --bail
-
- - stage: test
- name: chrome webworker
- script:
- - npm run test:webworker -- $RUN_SINCE -- -- --bail --timeout 60000
-
- - stage: test
- name: firefox
- script:
- - npm run test:browser -- $RUN_SINCE -- -- --bail -- --browser firefox
-
- - stage: test
- name: firefox webworker
- script:
- - npm run test:webworker -- $RUN_SINCE -- -- --bail --timeout 60000 -- --browser firefox
-
- - stage: test
- name: electron-main
- script:
- - npm run test:electron-main -- $RUN_SINCE -- -- --bail --timeout 60000
-
- - stage: test
- name: electron-renderer
- script:
- - npm run test:electron-renderer -- $RUN_SINCE -- -- --bail --timeout 60000
-
- - stage: test
- name: interop - node
- script:
- - npm run test:interop -- $RUN_SINCE -- -- -- -t node --bail
-
- - stage: test
- name: interop - browser
- script:
- - npm run test:interop -- $RUN_SINCE -- -- -- -t browser --bail
-
- - stage: test
- name: interop - electron-main
- script:
- - npm run test:interop -- $RUN_SINCE -- -- -- -t electron-main -f ./test/node.js --bail --timeout 60000
-
- - stage: test
- name: interop - electron-renderer
- script:
- - npm run test:interop -- $RUN_SINCE -- -- -- -t electron-renderer -f ./test/browser.js -bail --timeout 60000
-
- - stage: test
- name: js-ipfs interface tests - node
- script:
- - npm run test:interface:core -- $RUN_SINCE -- -- --bail -t node -- --exit # TODO remove --exit https://mochajs.org/#-exit
-
- - stage: test
- name: js-ipfs interface tests - chrome
- script:
- - npm run test:interface:core -- $RUN_SINCE -- -- --bail -t browser
-
- - stage: test
- name: js-ipfs interface tests - chrome webworker
- script:
- - npm run test:interface:core -- $RUN_SINCE -- -- --bail -t webworker --timeout 60000
-
- - stage: test
- name: js-ipfs interface tests - firefox
- script:
- - npm run test:interface:core -- $RUN_SINCE -- -- --bail -t browser -- --browser firefox
-
- #- stage: test
- # name: js-ipfs interface tests - firefox webworker
- # script:
- # - npm run test:interface:core -- $RUN_SINCE -- -- --bail -t webworker --timeout 60000 -- --browser firefox
-
- - stage: test
- name: js-ipfs interface tests - electron main
- script:
- - npm run test:interface:core -- $RUN_SINCE -- -- --bail -t electron-main --timeout 60000
-
- - stage: test
- name: js-ipfs interface tests - electron renderer
- script:
- - npm run test:interface:core -- $RUN_SINCE -- -- --bail -t electron-renderer --timeout 60000
-
- - stage: test
- name: js-ipfs interface tests - ipfs-client - node
- script:
- - npm run test:interface:client -- $RUN_SINCE -- -- --bail -t node -- --exit # TODO remove --exit https://mochajs.org/#-exit
-
- - stage: test
- name: js-ipfs interface tests - ipfs-client - chrome
- script:
- - npm run test:interface:client -- $RUN_SINCE -- -- --bail -t browser
-
- - stage: test
- name: js-ipfs interface tests - ipfs-client - chrome webworker
- script:
- - npm run test:interface:client -- $RUN_SINCE -- -- --bail -t webworker --timeout 60000
-
- - stage: test
- name: js-ipfs interface tests - ipfs-client - firefox
- script:
- - npm run test:interface:client -- $RUN_SINCE -- -- --bail -t browser -- --browser firefox
-
- - stage: test
- name: js-ipfs interface tests - ipfs-client - firefox webworker
- script:
- - npm run test:interface:client -- $RUN_SINCE -- -- --bail -t webworker --timeout 60000 -- --browser firefox
-
- - stage: test
- name: js-ipfs interface tests - ipfs-client - electron main
- script:
- - npm run test:interface:client -- $RUN_SINCE -- -- --bail -t electron-main --timeout 60000
-
- - stage: test
- name: js-ipfs interface tests - ipfs-client - electron renderer
- script:
- - npm run test:interface:client -- $RUN_SINCE -- -- --bail -t electron-renderer --timeout 60000
-
- - stage: test
- name: http-api-client interface tests vs go-ipfs - node
- script:
- - npm run test:interface:http-go -- $RUN_SINCE -- -- --bail -t node -- --exit # TODO remove --exit https://mochajs.org/#-exit
-
- - stage: test
- name: http-api-client interface tests vs go-ipfs - chrome
- script:
- - npm run test:interface:http-go -- $RUN_SINCE -- -- --bail -t browser
-
- - stage: test
- name: http-api-client interface tests vs go-ipfs - chrome webworker
- script:
- - npm run test:interface:http-go -- $RUN_SINCE -- -- --bail -t webworker --timeout 60000
-
- - stage: test
- name: http-api-client interface tests vs go-ipfs - firefox
- script:
- - npm run test:interface:http-go -- $RUN_SINCE -- -- --bail -t browser -- --browser firefox
-
- - stage: test
- name: http-api-client interface tests vs go-ipfs - firefox webworker
- script:
- - npm run test:interface:http-go -- $RUN_SINCE -- -- --bail -t webworker --timeout 60000 -- --browser firefox
-
- - stage: test
- name: http-api-client interface tests vs js-ipfs - node
- script:
- - npm run test:interface:http-js -- $RUN_SINCE -- -- --bail -t node -- --exit # TODO remove --exit https://mochajs.org/#-exit
-
- - stage: test
- name: http-api-client interface tests vs js-ipfs - chrome
- script:
- - npm run test:interface:http-js -- $RUN_SINCE -- -- --bail -t browser
-
- - stage: test
- name: http-api-client interface tests vs js-ipfs - chrome webworker
- script:
- - npm run test:interface:http-js -- $RUN_SINCE -- -- --bail -t webworker --timeout 60000
-
- - stage: test
- name: http-api-client interface tests vs js-ipfs - firefox
- script:
- - npm run test:interface:http-js -- $RUN_SINCE -- -- --bail -t browser --browser firefox
-
- - stage: test
- name: http-api-client interface tests vs js-ipfs - firefox webworker
- script:
- - npm run test:interface:http-js -- $RUN_SINCE -- -- --bail -t webworker --timeout 60000 -- --browser firefox
-
- - stage: test
- name: http-api-client interface tests vs js-ipfs - electron main
- script:
- - npm run test:interface:http-js -- $RUN_SINCE -- -- --bail -t electron-main --timeout 60000
-
- - stage: test
- name: http-api-client interface tests vs js-ipfs - electron renderer
- script:
- - npm run test:interface:http-js -- $RUN_SINCE -- -- --bail -t electron-renderer --timeout 60000
-
- - stage: test
- name: ipfs-message-port-client interface tests - chrome
- script:
- - npm run test:interface:message-port-client -- $RUN_SINCE -- -- --bail -t browser
-
- - stage: test
- name: ipfs-message-port-client interface tests - firefox
- script:
- - npm run test:interface:message-port-client -- $RUN_SINCE -- -- --bail -t browser -- --browser firefox
-
- - stage: test
- name: examples
- script:
- # Travis lets scripts continue even if previous steps fail so need to use &&: https://github.com/travis-ci/travis-ci/issues/1066
- - npm run configure-examples &&
- npm run test -- --scope=example* --concurrency=1
-
- - stage: release-rc
- # only run on changes to master
- if: branch = master AND type = push AND fork = false
- name: release rc
- script:
- # travis does not fetch the whole repo history, but we need that to work out the
- # ref count to publish canary releases properly
- - git fetch --unshallow
- - echo "//registry.npmjs.org/:_authToken=\${NPM_TOKEN}" > .npmrc
- - echo "$DOCKER_PASSWORD" | docker login -u "$DOCKER_USERNAME" --password-stdin
- # only run if the last commit was not part of a release
- - if [[ ! `git log -n 1 -q` =~ publish ]]; then npm run release:rc ; fi
-
- - stage: release-docker
- # only run on changes to master
- if: branch = master AND type = push AND fork = false
- name: release docker
- script:
- # travis does not fetch the whole repo history, but we need that to work out the
- # ref count to publish canary releases properly
- - git fetch --unshallow
- - echo "//registry.npmjs.org/:_authToken=\${NPM_TOKEN}" > .npmrc
- - echo "$DOCKER_PASSWORD" | docker login -u "$DOCKER_USERNAME" --password-stdin
- # only run if the last commit was not part of a release
- - if [[ ! `git log -n 1 -q` =~ publish ]]; then npm run docker:rc ; fi
-
- - stage: test-external
- # only run on changes to master
- if: branch = master AND type = push AND fork = false
- name: external - ipfs-webui
- script:
- - E2E_IPFSD_TYPE=js npm run test:external -- -- -- https://github.com/ipfs-shipyard/ipfs-webui.git --deps=ipfs@next
-
- - stage: test-external
- # only run on changes to master
- if: branch = master AND type = push AND fork = false
- name: external - ipfs-companion
- script:
- - npm run test:external -- -- -- https://github.com/ipfs-shipyard/ipfs-companion.git --deps=ipfs@next
-
- - stage: test-external
- # only run on changes to master
- if: branch = master AND type = push AND fork = false
- name: external - npm-on-ipfs
- script:
- - npm run test:external -- -- -- https://github.com/ipfs-shipyard/npm-on-ipfs.git --deps=ipfs@next
-
- - stage: test-external
- # only run on changes to master
- if: branch = master AND type = push AND fork = false
- name: external - peer-base
- script:
- - npm run test:external -- -- -- https://github.com/achingbrain/peer-base.git --branch upgrade-to-latest-ipfs-rc --deps=ipfs@next
-
- - stage: test-external
- # only run on changes to master
- if: branch = master AND type = push AND fork = false
- name: external - service-worker-gateway
- script:
- - npm run test:external -- -- -- https://github.com/ipfs-shipyard/service-worker-gateway.git --deps=ipfs@next
-
- - stage: test-external
- # only run on changes to master
- if: branch = master AND type = push AND fork = false
- name: external - orbit-db
- script:
- - npm run test:external -- -- -- https://github.com/orbitdb/orbit-db.git --deps=ipfs@next
-
- - stage: test-external
- # only run on changes to master
- if: branch = master AND type = push AND fork = false
- name: external - ipfs-log
- script:
- - npm run test:external -- -- -- https://github.com/orbitdb/ipfs-log.git --deps=ipfs@next
-
-notifications:
- email: false
diff --git a/LICENSE b/LICENSE
new file mode 100644
index 0000000000..20ce483c86
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,4 @@
+This project is dual licensed under MIT and Apache-2.0.
+
+MIT: https://www.opensource.org/licenses/mit
+Apache-2.0: https://www.apache.org/licenses/license-2.0
diff --git a/LICENSE-MIT b/LICENSE-MIT
index 749aa1ecd9..72dc60d84b 100644
--- a/LICENSE-MIT
+++ b/LICENSE-MIT
@@ -16,4 +16,4 @@ 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.
\ No newline at end of file
+THE SOFTWARE.
diff --git a/README.md b/README.md
index 019fb749c6..49da0064e0 100644
--- a/README.md
+++ b/README.md
@@ -6,13 +6,6 @@
The JavaScript implementation of the IPFS protocol
-
-
-
-
-
-
-
@@ -20,34 +13,29 @@
-> **Upgrading from <=0.40 to 0.48?** See the [release notes](https://github.com/ipfs/js-ipfs/issues/2656) for the list of API changes and the [migration guide](https://github.com/ipfs/js-ipfs/tree/master/docs/MIGRATION-TO-ASYNC-AWAIT.md).
-
-We've come a long way, but this project is still in Alpha, lots of development is happening, APIs might change, beware of 🐉..
-
## Getting started
* Read the [docs](https://github.com/ipfs/js-ipfs/tree/master/docs)
-* Look into the [examples](https://github.com/ipfs/js-ipfs/tree/master/examples) to learn how to spawn an IPFS node in Node.js and in the Browser
+* Ensure CORS is [correctly configured](https://github.com/ipfs/js-ipfs/blob/master/docs/CORS.md) for use with the HTTP client
+* Look into the [examples](https://github.com/ipfs-examples/js-ipfs-examples/tree/master) to learn how to spawn an IPFS node in Node.js and in the Browser
* Consult the [Core API docs](https://github.com/ipfs/js-ipfs/tree/master/docs/core-api) to see what you can do with an IPFS node
-* Visit https://dweb-primer.ipfs.io to learn about IPFS and the concepts that underpin it
-* Head over to https://proto.school to take interactive tutorials that cover core IPFS APIs
-* Check out https://docs.ipfs.io for tips, how-tos and more
-* See https://blog.ipfs.io for news and more
+* Head over to https://proto.school to take the [IPFS course](https://proto.school/course/ipfs) that covers core IPFS concepts and JS APIs
+* Check out https://docs.ipfs.io for [glossary](https://docs.ipfs.io/concepts/glossary), tips, how-tos and more
* Need help? Please ask 'How do I?' questions on https://discuss.ipfs.io
-
-## Lead Maintainer
-
-[Alex Potsides](http://github.com/achingbrain)
+* Find out about chat channels, the IPFS newsletter, the IPFS blog, and more in the [IPFS community space](https://docs.ipfs.io/community/).
## Table of Contents
- [Getting started](#getting-started)
+ - [Install as a CLI user](#install-as-a-cli-user)
+ - [Install as an application developer](#install-as-an-application-developer)
- [Documentation](#documentation)
- [Structure](#structure)
+- [Packages](#packages)
- [Want to hack on IPFS?](#want-to-hack-on-ipfs)
- [License](#license)
-## Getting Started
+## Getting Started
### Install as a CLI user
@@ -82,7 +70,7 @@ $ npm install ipfs-core
Then start a node in your app:
```javascript
-const IPFS = require('ipfs-core')
+import * as IPFS from 'ipfs-core'
const ipfs = await IPFS.create()
const { cid } = await ipfs.add('Hello world')
@@ -92,9 +80,10 @@ console.info(cid)
## Documentation
+* [Concepts](https://docs.ipfs.io/concepts/)
* [Config](./docs/CONFIG.md)
* [Core API](./docs/core-api)
-* [Examples](./examples)
+* [Examples](https://github.com/ipfs-examples/js-ipfs-examples/tree/master/examples)
* [Development](./docs/DEVELOPMENT.md)
## Structure
@@ -102,10 +91,19 @@ console.info(cid)
This project is broken into several modules, their purposes are:
* [`/packages/interface-ipfs-core`](./packages/interface-ipfs-core) Tests to ensure adherence of an implementation to the spec
-* [`/packages/ipfs`](./packages/ipfs) The core implementation
+* [`/packages/ipfs`](./packages/ipfs) An aggregator module that bundles the core implementation, the CLI, HTTP API server and daemon
+* [`/packages/ipfs-cli`](./packages/ipfs-cli) A CLI to the core implementation
+* [`/packages/ipfs-core`](./packages/ipfs-core) The core implementation
+* [`/packages/ipfs-core-types`](./packages/ipfs-core-types) Typescript definitions for the core API
* [`/packages/ipfs-core-utils`](./packages/ipfs-core-utils) Helpers and utilities common to core and the HTTP RPC API client
+* [`/packages/ipfs-daemon`](./packages/ipfs-daemon) Run js-IPFS as a background daemon
+* [`/packages/ipfs-grpc-client`](./packages/ipfs-grpc-client) A gRPC client for js-IPFS
+* [`/packages/ipfs-grpc-protocol`](./packages/ipfs-grpc-protocol) Shared module between the gRPC client and server
+* [`/packages/ipfs-grpc-server`](./packages/ipfs-grpc-server) A gRPC-over-websockets server for js-IPFS
* [`/packages/ipfs-http-client`](./packages/ipfs-http-client) A client for the RPC-over-HTTP API presented by both js-ipfs and go-ipfs
-* [`/packages/ipfs-message-port-client`](./packages/ipfs-http-client) A client for the RPC-over-HTTP API presented by both js-ipfs and go-ipfs
+* [`/packages/ipfs-http-server`](./packages/ipfs-http-server) JS implementation of the [Kubo RPC HTTP API](https://docs.ipfs.io/reference/kubo/rpc/)
+* [`/packages/ipfs-http-gateway`](./packages/ipfs-http-gateway) JS implementation of the [IPFS HTTP Gateway](https://docs.ipfs.io/concepts/ipfs-gateway/)
+* [`/packages/ipfs-http-response`](./packages/ipfs-http-response) Creates a HTTP response for a given IPFS Path
* [`/packages/ipfs-message-port-client`](./packages/ipfs-message-port-client) A client for the RPC-over-message-port API presented by js-ipfs running in a shared worker
* [`/packages/ipfs-message-port-protocol`](./packages/ipfs-message-port-protocol) Code shared by the message port client & server
* [`/packages/ipfs-message-port-server`](./packages/ipfs-message-port-server) The server that receives requests from ipfs-message-port-client
@@ -117,14 +115,11 @@ List of the main packages that make up the IPFS ecosystem.
| Package | Version | Deps | CI/Travis | Coverage | Lead Maintainer |
| ---------|---------|---------|---------|---------|--------- |
| **Files** |
-| [`ipfs-unixfs-exporter`](//github.com/ipfs/js-ipfs-unixfs) | [](//github.com/ipfs/js-ipfs-unixfs/releases) | [](https://david-dm.org/ipfs/js-ipfs-unixfs) | [](https://travis-ci.com/ipfs/js-ipfs-unixfs) | [](https://codecov.io/gh/ipfs/js-ipfs-unixfs) | [Alex Potsides](mailto:alex.potsides@protocol.ai) |
-| [`ipfs-unixfs-importer`](//github.com/ipfs/js-ipfs-unixfs) | [](//github.com/ipfs/js-ipfs-unixfs/releases) | [](https://david-dm.org/ipfs/js-ipfs-unixfs) | [](https://travis-ci.com/ipfs/js-ipfs-unixfs) | [](https://codecov.io/gh/ipfs/js-ipfs-unixfs) | [Alex Potsides](mailto:alex.potsides@protocol.ai) |
| [`ipfs-unixfs`](//github.com/ipfs/js-ipfs-unixfs) | [](//github.com/ipfs/js-ipfs-unixfs/releases) | [](https://david-dm.org/ipfs/js-ipfs-unixfs) | [](https://travis-ci.com/ipfs/js-ipfs-unixfs) | [](https://codecov.io/gh/ipfs/js-ipfs-unixfs) | [Alex Potsides](mailto:alex.potsides@protocol.ai) |
| **Repo** |
| [`ipfs-repo`](//github.com/ipfs/js-ipfs-repo) | [](//github.com/ipfs/js-ipfs-repo/releases) | [](https://david-dm.org/ipfs/js-ipfs-repo) | [](https://travis-ci.com/ipfs/js-ipfs-repo) | [](https://codecov.io/gh/ipfs/js-ipfs-repo) | [Alex Potsides](mailto:alex@achingbrain.net) |
+| [`ipfs-repo-migrations`](//github.com/ipfs/js-ipfs-repo-migrations) | [](//github.com/ipfs/js-ipfs-repo-migrations/releases) | [](https://david-dm.org/ipfs/js-ipfs-repo-migrations) | [](https://travis-ci.com/ipfs/js-ipfs-repo-migrations) | [](https://codecov.io/gh/ipfs/js-ipfs-repo-migrations) | N/A |
| **Exchange** |
-| [`ipfs-block-service`](//github.com/ipfs/js-ipfs-block-service) | [](//github.com/ipfs/js-ipfs-block-service/releases) | [](https://david-dm.org/ipfs/js-ipfs-block-service) | [](https://travis-ci.com/ipfs/js-ipfs-block-service) | [](https://codecov.io/gh/ipfs/js-ipfs-block-service) | [Volker Mische](mailto:volker.mische@gmail.com) |
-| [`ipfs-block`](//github.com/ipfs/js-ipfs-block) | [](//github.com/ipfs/js-ipfs-block/releases) | [](https://david-dm.org/ipfs/js-ipfs-block) | [](https://travis-ci.com/ipfs/js-ipfs-block) | [](https://codecov.io/gh/ipfs/js-ipfs-block) | [Volker Mische](mailto:volker.mische@gmail.com) |
| [`ipfs-bitswap`](//github.com/ipfs/js-ipfs-bitswap) | [](//github.com/ipfs/js-ipfs-bitswap/releases) | [](https://david-dm.org/ipfs/js-ipfs-bitswap) | [](https://travis-ci.com/ipfs/js-ipfs-bitswap) | [](https://codecov.io/gh/ipfs/js-ipfs-bitswap) | [Dirk McCormick](mailto:dirk@protocol.ai) |
| **IPNS** |
| [`ipns`](//github.com/ipfs/js-ipns) | [](//github.com/ipfs/js-ipns/releases) | [](https://david-dm.org/ipfs/js-ipns) | [](https://travis-ci.com/ipfs/js-ipns) | [](https://codecov.io/gh/ipfs/js-ipns) | [Vasco Santos](mailto:vasco.santos@moxy.studio) |
@@ -135,7 +130,6 @@ List of the main packages that make up the IPFS ecosystem.
| [`ipfsd-ctl`](//github.com/ipfs/js-ipfsd-ctl) | [](//github.com/ipfs/js-ipfsd-ctl/releases) | [](https://david-dm.org/ipfs/js-ipfsd-ctl) | [](https://travis-ci.com/ipfs/js-ipfsd-ctl) | [](https://codecov.io/gh/ipfs/js-ipfsd-ctl) | [Hugo Dias](mailto:mail@hugodias.me) |
| [`is-ipfs`](//github.com/ipfs/is-ipfs) | [](//github.com/ipfs/is-ipfs/releases) | [](https://david-dm.org/ipfs/is-ipfs) | [](https://travis-ci.com/ipfs/is-ipfs) | [](https://codecov.io/gh/ipfs/is-ipfs) | [Marcin Rataj](mailto:lidel@lidel.org) |
| [`aegir`](//github.com/ipfs/aegir) | [](//github.com/ipfs/aegir/releases) | [](https://david-dm.org/ipfs/aegir) | [](https://travis-ci.com/ipfs/aegir) | [](https://codecov.io/gh/ipfs/aegir) | [Hugo Dias](mailto:hugomrdias@gmail.com) |
-| [`ipfs-repo-migrations`](//github.com/ipfs/js-ipfs-repo-migrations) | [](//github.com/ipfs/js-ipfs-repo-migrations/releases) | [](https://david-dm.org/ipfs/js-ipfs-repo-migrations) | [](https://travis-ci.com/ipfs/js-ipfs-repo-migrations) | [](https://codecov.io/gh/ipfs/js-ipfs-repo-migrations) | N/A |
| **libp2p** |
| [`libp2p`](//github.com/libp2p/js-libp2p) | [](//github.com/libp2p/js-libp2p/releases) | [](https://david-dm.org/libp2p/js-libp2p) | [](https://travis-ci.com/libp2p/js-libp2p) | [](https://codecov.io/gh/libp2p/js-libp2p) | [Jacob Heun](mailto:jacobheun@gmail.com) |
| [`peer-id`](//github.com/libp2p/js-peer-id) | [](//github.com/libp2p/js-peer-id/releases) | [](https://david-dm.org/libp2p/js-peer-id) | [](https://travis-ci.com/libp2p/js-peer-id) | [](https://codecov.io/gh/libp2p/js-peer-id) | [Vasco Santos](mailto:santos.vasco10@gmail.com) |
@@ -145,7 +139,7 @@ List of the main packages that make up the IPFS ecosystem.
| [`libp2p-kad-dht`](//github.com/libp2p/js-libp2p-kad-dht) | [](//github.com/libp2p/js-libp2p-kad-dht/releases) | [](https://david-dm.org/libp2p/js-libp2p-kad-dht) | [](https://travis-ci.com/libp2p/js-libp2p-kad-dht) | [](https://codecov.io/gh/libp2p/js-libp2p-kad-dht) | [Vasco Santos](mailto:vasco.santos@moxy.studio) |
| [`libp2p-mdns`](//github.com/libp2p/js-libp2p-mdns) | [](//github.com/libp2p/js-libp2p-mdns/releases) | [](https://david-dm.org/libp2p/js-libp2p-mdns) | [](https://travis-ci.com/libp2p/js-libp2p-mdns) | [](https://codecov.io/gh/libp2p/js-libp2p-mdns) | [Jacob Heun](mailto:jacobheun@gmail.com) |
| [`libp2p-bootstrap`](//github.com/libp2p/js-libp2p-bootstrap) | [](//github.com/libp2p/js-libp2p-bootstrap/releases) | [](https://david-dm.org/libp2p/js-libp2p-bootstrap) | [](https://travis-ci.com/libp2p/js-libp2p-bootstrap) | [](https://codecov.io/gh/libp2p/js-libp2p-bootstrap) | [Vasco Santos](mailto:vasco.santos@moxy.studio) |
-| [`libp2p-noise`](//github.com/NodeFactoryIo/js-libp2p-noise) | [](//github.com/NodeFactoryIo/js-libp2p-noise/releases) | [](https://david-dm.org/NodeFactoryIo/js-libp2p-noise) | [](https://travis-ci.com/NodeFactoryIo/js-libp2p-noise) | [](https://codecov.io/gh/NodeFactoryIo/js-libp2p-noise) | N/A |
+| [`@chainsafe/libp2p-noise`](//github.com/ChainSafe/js-libp2p-noise) | [](//github.com/ChainSafe/js-libp2p-noise/releases) | [](https://david-dm.org/ChainSafe/js-libp2p-noise) | [](https://travis-ci.com/ChainSafe/js-libp2p-noise) | [](https://codecov.io/gh/ChainSafe/js-libp2p-noise) | N/A |
| [`libp2p-tcp`](//github.com/libp2p/js-libp2p-tcp) | [](//github.com/libp2p/js-libp2p-tcp/releases) | [](https://david-dm.org/libp2p/js-libp2p-tcp) | [](https://travis-ci.com/libp2p/js-libp2p-tcp) | [](https://codecov.io/gh/libp2p/js-libp2p-tcp) | [Jacob Heun](mailto:jacobheun@gmail.com) |
| [`libp2p-webrtc-star`](//github.com/libp2p/js-libp2p-webrtc-star) | [](//github.com/libp2p/js-libp2p-webrtc-star/releases) | [](https://david-dm.org/libp2p/js-libp2p-webrtc-star) | [](https://travis-ci.com/libp2p/js-libp2p-webrtc-star) | [](https://codecov.io/gh/libp2p/js-libp2p-webrtc-star) | [Vasco Santos](mailto:vasco.santos@moxy.studio) |
| [`libp2p-websockets`](//github.com/libp2p/js-libp2p-websockets) | [](//github.com/libp2p/js-libp2p-websockets/releases) | [](https://david-dm.org/libp2p/js-libp2p-websockets) | [](https://travis-ci.com/libp2p/js-libp2p-websockets) | [](https://codecov.io/gh/libp2p/js-libp2p-websockets) | [Jacob Heun](mailto:jacobheun@gmail.com) |
@@ -153,14 +147,12 @@ List of the main packages that make up the IPFS ecosystem.
| [`libp2p-delegated-content-routing`](//github.com/libp2p/js-libp2p-delegated-content-routing) | [](//github.com/libp2p/js-libp2p-delegated-content-routing/releases) | [](https://david-dm.org/libp2p/js-libp2p-delegated-content-routing) | [](https://travis-ci.com/libp2p/js-libp2p-delegated-content-routing) | [](https://codecov.io/gh/libp2p/js-libp2p-delegated-content-routing) | [Jacob Heun](mailto:jacobheun@gmail.com) |
| [`libp2p-delegated-peer-routing`](//github.com/libp2p/js-libp2p-delegated-peer-routing) | [](//github.com/libp2p/js-libp2p-delegated-peer-routing/releases) | [](https://david-dm.org/libp2p/js-libp2p-delegated-peer-routing) | [](https://travis-ci.com/libp2p/js-libp2p-delegated-peer-routing) | [](https://codecov.io/gh/libp2p/js-libp2p-delegated-peer-routing) | [Jacob Heun](mailto:jacobheun@gmail.com) |
| **IPLD** |
-| [`ipld`](//github.com/ipld/js-ipld) | [](//github.com/ipld/js-ipld/releases) | [](https://david-dm.org/ipld/js-ipld) | [](https://travis-ci.com/ipld/js-ipld) | [](https://codecov.io/gh/ipld/js-ipld) | [Volker Mische](mailto:volker.mische@gmail.com) |
-| [`ipld-dag-pb`](//github.com/ipld/js-ipld-dag-pb) | [](//github.com/ipld/js-ipld-dag-pb/releases) | [](https://david-dm.org/ipld/js-ipld-dag-pb) | [](https://travis-ci.com/ipld/js-ipld-dag-pb) | [](https://codecov.io/gh/ipld/js-ipld-dag-pb) | [Volker Mische](mailto:volker.mische@gmail.com) |
-| [`ipld-dag-cbor`](//github.com/ipld/js-ipld-dag-cbor) | [](//github.com/ipld/js-ipld-dag-cbor/releases) | [](https://david-dm.org/ipld/js-ipld-dag-cbor) | [](https://travis-ci.com/ipld/js-ipld-dag-cbor) | [](https://codecov.io/gh/ipld/js-ipld-dag-cbor) | [Volker Mische](mailto:volker.mische@gmail.com) |
+| [`@ipld/dag-pb`](//github.com/ipld/js-dag-pb) | [](//github.com/ipld/js-dag-pb/releases) | [](https://david-dm.org/ipld/js-dag-pb) | [](https://travis-ci.com/ipld/js-dag-pb) | [](https://codecov.io/gh/ipld/js-dag-pb) | N/A |
+| [`@ipld/dag-cbor`](//github.com/ipld/js-dag-cbor) | [](//github.com/ipld/js-dag-cbor/releases) | [](https://david-dm.org/ipld/js-dag-cbor) | [](https://travis-ci.com/ipld/js-dag-cbor) | [](https://codecov.io/gh/ipld/js-dag-cbor) | N/A |
| **Multiformats** |
-| [`multihashing`](//github.com/multiformats/js-multihashing) | [](//github.com/multiformats/js-multihashing/releases) | [](https://david-dm.org/multiformats/js-multihashing) | [](https://travis-ci.com/multiformats/js-multihashing) | [](https://codecov.io/gh/multiformats/js-multihashing) | [Hugo Dias](mailto:mail@hugodias.me) |
+| [`multiformats`](//github.com/multiformats/js-multiformats) | [](//github.com/multiformats/js-multiformats/releases) | [](https://david-dm.org/multiformats/js-multiformats) | [](https://travis-ci.com/multiformats/js-multiformats) | [](https://codecov.io/gh/multiformats/js-multiformats) | N/A |
| [`mafmt`](//github.com/multiformats/js-mafmt) | [](//github.com/multiformats/js-mafmt/releases) | [](https://david-dm.org/multiformats/js-mafmt) | [](https://travis-ci.com/multiformats/js-mafmt) | [](https://codecov.io/gh/multiformats/js-mafmt) | [Vasco Santos](mailto:vasco.santos@moxy.studio) |
| [`multiaddr`](//github.com/multiformats/js-multiaddr) | [](//github.com/multiformats/js-multiaddr/releases) | [](https://david-dm.org/multiformats/js-multiaddr) | [](https://travis-ci.com/multiformats/js-multiaddr) | [](https://codecov.io/gh/multiformats/js-multiaddr) | [Jacob Heun](mailto:jacobheun@gmail.com) |
-| [`multihashes`](//github.com/multiformats/js-multihash) | [](//github.com/multiformats/js-multihash/releases) | [](https://david-dm.org/multiformats/js-multihash) | [](https://travis-ci.com/multiformats/js-multihash) | [](https://codecov.io/gh/multiformats/js-multihash) | [David Dias](mailto:daviddias@ipfs.io) |
> This table is generated using the module [`package-table`](https://www.npmjs.com/package/package-table) with `package-table --data=package-list.json`.
@@ -168,7 +160,7 @@ List of the main packages that make up the IPFS ecosystem.
[](https://github.com/ipfs/community/blob/master/CONTRIBUTING.md)
-The IPFS implementation in JavaScript needs your help! There are a few things you can do right now to help out:
+The IPFS implementation in JavaScript needs your help! There are a few things you can do right now to help out:
Read the [Code of Conduct](https://github.com/ipfs/community/blob/master/code-of-conduct.md) and [JavaScript Contributing Guidelines](https://github.com/ipfs/community/blob/master/CONTRIBUTING_JS.md).
@@ -179,7 +171,6 @@ Read the [Code of Conduct](https://github.com/ipfs/community/blob/master/code-of
b. ensure quality, and
c. reduce possible future bugs.
- **Add tests**. There can never be enough tests.
-- **Join the [Weekly Core Implementations Call](https://github.com/ipfs/team-mgmt/issues/992)** it's where everyone discusses what's going on with IPFS and what's next
## License
diff --git a/docs/BROWSERS.md b/docs/BROWSERS.md
index 5599541944..33366f26a7 100644
--- a/docs/BROWSERS.md
+++ b/docs/BROWSERS.md
@@ -8,28 +8,29 @@
- [Code Examples](#code-examples)
JS IPFS is the implementation of IPFS protocol in JavaScript. It can run on any
-evergreen browser, inside a service or web worker, browser extensions, Electron and in Node.js.
+evergreen browser, inside a service or web worker, browser extensions, Electron, and in Node.js.
**This document provides key information about running JS IPFS in the browser.
Save time and get familiar with common caveats and limitations of the browser context.**
## Limitations of the Browser Context
-- Transport options are limited to [WebSockets](https://developer.mozilla.org/en-US/docs/Web/API/WebSockets_API) and [WebRTC](https://developer.mozilla.org/en-US/docs/Web/API/WebRTC_API).
+- Transport options are currently limited to [WebSockets](https://developer.mozilla.org/en-US/docs/Web/API/WebSockets_API) and [WebRTC](https://developer.mozilla.org/en-US/docs/Web/API/WebRTC_API).
This means JS IPFS running in the browser is limited to Web APIs available on a web page.
- There is no access to raw TCP sockets nor low level UDP, only WebSockets and WebRTC.
+ There is no access to raw TCP sockets nor low-level UDP, only WebSockets, and WebRTC.
- Key [Web APIs](https://developer.mozilla.org/en-US/docs/Web/API) require or are restricted by [Secure Context](https://developer.mozilla.org/en-US/docs/Web/Security/Secure_Contexts) policies.
This means JS IPFS needs to run within Secure Context (HTTPS or localhost).
- JS IPFS running on HTTPS website requires Secure WebSockets (TLS) and won't work with unencrypted one.
+ JS IPFS running on HTTPS website requires Secure WebSockets (TLS) and won't work with unencrypted ones.
[Web Crypto API](https://developer.mozilla.org/en-US/docs/Web/API/Web_Crypto_API) not being available at all.
-- [DHT](https://en.wikipedia.org/wiki/Distributed_hash_table) is not available in JS IPFS yet.
+- JS IPFS comes with limited support for the [DHT](https://docs.ipfs.tech/concepts/dht/) in client mode which delegates content discovery requests to other DHT nodes.
- [We are working on it](https://github.com/ipfs/js-ipfs/pull/1994). For now, the discovery and connectivity to other peers is achieved with a mix of rendezvous and
- relay servers, delegated peer/content routing and preload servers.
+ However, it's worth noting that even though you'll get results from DHT queries, most nodes in the network are not dialable from browsers because they only support TCP and/or QUIC transports.
+
+ For now, the content discovery and connectivity to other peers are achieved with a mix of DHT client requests, rendezvous and relay servers, delegated peer/content routing, and preload servers.
## Addressing Limitations
@@ -40,23 +41,24 @@ We provide a few additional components useful for running JS IPFS in the browser
- [libp2p-webrtc-star](https://github.com/libp2p/js-libp2p-webrtc-star) - incorporates both a transport and a discovery service that is facilitated by the custom rendezvous server available in the repo
- Instructions on enabling `webrtc-star` in js-ipfs config can be found [here](https://github.com/ipfs/js-ipfs/blob/master/docs/FAQ.md#how-to-enable-webrtc-support-for-js-ipfs-in-the-browser).
- Make sure to [run your own rendezvous server](https://github.com/libp2p/js-libp2p-webrtc-star#rendezvous-server-aka-signalling-server).
-- [libp2p-webrtc-direct](https://github.com/libp2p/js-libp2p-webrtc-direct) - a WebRTC transport that doesn't require the set up a signalling server.
+- [libp2p-webrtc-direct](https://github.com/libp2p/js-libp2p-webrtc-direct) - a WebRTC transport that doesn't require the set up a signaling server.
- Caveat: you can only establish Browser to Node.js and Node.js to Node.js connections.
-**Note:** those are semi-centralized solutions. We are working towards replacing `*-star` with and ambient relays and [libp2p-rendezvous](https://github.com/libp2p/js-libp2p-rendezvous). Details and progress can be found [here](https://github.com/libp2p/js-libp2p/issues/385).
+**Note:** those are semi-centralized solutions. We are working towards replacing `*-star` with ambient relays and [libp2p-rendezvous](https://github.com/libp2p/js-libp2p-rendezvous). Details and progress can be found [here](https://github.com/libp2p/js-libp2p/issues/385).
You can find detailed information about running js-ipfs [here](https://github.com/ipfs/js-ipfs#table-of-contents).
## Best Practices
-- Configure nodes for using self-hosted `*-star` signalling and transport service. When in doubt, use WebSockets ones.
+- Configure nodes for using self-hosted `*-star` signalling and transport service. When in doubt, use WebSockets ones.
- Run your own instance of `*-star` signalling service.
The default ones are under high load and should be used only for tests and development.
-- Make sure content added to js-ipfs running in the browser is persisted/cached somewhere on regular IPFS daemon
+- Make sure content added to js-ipfs running in the browser is persisted/cached somewhere on a regular long-running IPFS daemon, e.g. [kubo](https://github.com/ipfs/kubo/)
- Manually `pin` or preload CIDs of interest with `refs -r` beforehand.
- - Preload content on the fly using [preload](https://github.com/ipfs/js-ipfs/blob/master/packages/ipfs/docs/MODULE.md#optionspreload) feature and/or
- configure [delegated routing](https://github.com/ipfs/js-ipfs/blob/master/packages/ipfs/docs/DELEGATE_ROUTERS.md).
- - Avoid public instances in production environment. Make sure preload and delegate nodes used in config are self-hosted and under your control (expose a subset of go-ipfs APIs via reverse proxy such as Nginx).
+ - Preload content on the fly using [preload](https://github.com/ipfs/js-ipfs/blob/master/docs/MODULE.md#optionspreload) feature and/or
+ configure [delegated routing](https://github.com/ipfs/js-ipfs/blob/master/docs/DELEGATE_ROUTERS.md).
+ - Avoid public instances in production environments. Make sure preload and delegate nodes used in config are self-hosted and under your control (expose a subset of [kubo](https://github.com/ipfs/kubo/) (formerly go-ipfs) APIs via reverse proxy such as Nginx).
+- If your main goal is to provide content and files to the IPFS network from a browser and you would like to avoid running infrastructure, consider using a pinning service like [Web3.storage](https://web3.storage/).
## Code Examples
@@ -76,4 +78,4 @@ document.addEventListener('DOMContentLoaded', async () => {
```
-More advanced examples and tutorials can be found in the [examples](../examples)
+More advanced examples and tutorials can be found in the [examples](https://github.com/ipfs-examples)
diff --git a/docs/CONFIG.md b/docs/CONFIG.md
index 173d349f2f..546d9d1ddf 100644
--- a/docs/CONFIG.md
+++ b/docs/CONFIG.md
@@ -7,6 +7,7 @@ The js-ipfs config file is a JSON document located in the root directory of the
- [Profiles](#profiles)
- [`Addresses`](#addresses)
- [`API`](#api)
+ - [`RPC`](#rpc)
- [`Delegates`](#delegates)
- [`Gateway`](#gateway)
- [`Swarm`](#swarm)
@@ -85,6 +86,14 @@ The IPFS daemon exposes an HTTP API that allows to control the node and run the
Default: `/ip4/127.0.0.1/tcp/5002`
+### `RPC`
+
+js-IPFS has a gRPC-over-websockets server that allows it to do things that you cannot do over HTTP like bi-directional streaming. It implements the same API as the [HTTP API Spec](https://docs.ipfs.io/reference/api/http) and can be accessed using the [ipfs-client](https://www.npmjs.com/package/ipfs-client) module.
+
+Configure the address it listens on using this config key.
+
+Default: `/ip4/127.0.0.1/tcp/5003`
+
### `Delegates`
Delegate peers are used to find peers and retrieve content from the network on your behalf.
@@ -191,7 +200,7 @@ Options for Multicast DNS peer discovery:
### `webRTCStar`
-WebRTCStar is a discovery mechanism prvided by a signalling-star that allows peer-to-peer communications in the browser.
+WebRTCStar is a discovery mechanism provided by a signalling-star that allows peer-to-peer communications in the browser.
Options for webRTCstar peer discovery:
diff --git a/docs/DAEMON.md b/docs/DAEMON.md
index 04ca934b90..febd011eb7 100644
--- a/docs/DAEMON.md
+++ b/docs/DAEMON.md
@@ -23,7 +23,7 @@ The IPFS Daemon exposes the API defined in the [HTTP API spec](https://docs.ipfs
If you want a programmatic way to spawn a IPFS Daemon using JavaScript, check out the [ipfsd-ctl](https://github.com/ipfs/js-ipfsd-ctl) module.
```javascript
-const { createFactory } = require('ipfsd-ctl')
+import { createFactory } from 'ipfsd-ctl'
const factory = createFactory({
type: 'proc' // or 'js' to run in a separate process
})
diff --git a/docs/DELEGATE_ROUTERS.md b/docs/DELEGATE_ROUTERS.md
index da68539ddf..03b906a6c0 100644
--- a/docs/DELEGATE_ROUTERS.md
+++ b/docs/DELEGATE_ROUTERS.md
@@ -24,7 +24,7 @@ Available delegate multiaddrs are:
**Note**: If more than 1 delegate multiaddr is specified, the actual delegate will be randomly selected on startup.
-**Note**: If you wish to use delegated routing and are creating your node _programmatically_ in Node.js or the browser you must `npm install libp2p-delegated-content-routing` and/or `npm install libp2p-delegated-peer-routing` and provide configured instances of them in [`options.libp2p`](#optionslibp2p). See the module repos for further instructions:
+**Note**: If you wish to use delegated routing and are creating your node _programmatically_ in Node.js or the browser you must `npm install libp2p-delegated-content-routing` and/or `npm install libp2p-delegated-peer-routing` and provide configured instances of them in [`options.libp2p`](./MODULE.md#optionslibp2p). See the module repos for further instructions:
- https://github.com/libp2p/js-libp2p-delegated-content-routing
- https://github.com/libp2p/js-libp2p-delegated-peer-routing
diff --git a/docs/DEVELOPMENT.md b/docs/DEVELOPMENT.md
index d59e2d66b1..6ac3a4f7d9 100644
--- a/docs/DEVELOPMENT.md
+++ b/docs/DEVELOPMENT.md
@@ -2,6 +2,7 @@
> Getting started with development on IPFS
+- [Install npm@7](#install-npm7)
- [Clone and install dependencies](#clone-and-install-dependencies)
- [Run tests](#run-tests)
- [Lint](#lint)
@@ -14,6 +15,14 @@
- [Core](#core)
- [Non-Core](#non-core)
+## Install npm@7
+
+This project uses a [workspace](https://docs.npmjs.com/cli/v7/using-npm/workspaces) structure so requires npm@7 or above. If you are running node 15 or later you already have it, if not run:
+
+```sh
+$ npm install -g npm@latest
+```
+
## Clone and install dependencies
```sh
@@ -26,7 +35,7 @@ This will install [lerna](https://www.npmjs.com/package/lerna) and bootstrap the
If later you add new dependencies to submodules or just wish to remove all the `node_modules`/`dist` folders and start again, run `npm run reset && npm install` from the root.
-See the scripts section of the root [`package.json`](./package.json) for more commands.
+See the scripts section of the root [`package.json`](../package.json) for more commands.
## Run tests
diff --git a/docs/EARLY_TESTERS.md b/docs/EARLY_TESTERS.md
index 24162a0c67..f1cc5b0e27 100644
--- a/docs/EARLY_TESTERS.md
+++ b/docs/EARLY_TESTERS.md
@@ -31,6 +31,7 @@ We will ask early testers to participate at two points in the process:
- [orbit-db](https://github.com/orbitdb/orbit-db) - Peer-to-Peer Databases for the Decentralized Web
- [ipfs-log](https://github.com/orbitdb/ipfs-log) - Append-only log CRDT on IPFS
- [Sidetree DID Protocol](https://github.com/decentralized-identity/sidetree) - Decentralized Identifier Layer-2 network protocol
+- [Constellation](https://julienmalard.github.io/constellation/) - Distributed scientific databases for citizen science and more
## How to sign up?
diff --git a/docs/FAQ.md b/docs/FAQ.md
index 0fb54b3756..c7b314cb5d 100644
--- a/docs/FAQ.md
+++ b/docs/FAQ.md
@@ -73,8 +73,8 @@ Yes, however, bear in mind that there isn't a 100% stable solution to use WebRTC
To add WebRTC support in a IPFS node instance, do:
```JavaScript
-const wrtc = require('wrtc') // or require('electron-webrtc')()
-const WebRTCStar = require('libp2p-webrtc-star')
+import wrtc from 'wrtc' // or 'electron-webrtc'
+import WebRTCStar from '@libp2p/webrtc-star'
const node = await IPFS.create({
repo: 'your-repo-path',
diff --git a/docs/IPLD.md b/docs/IPLD.md
index 28bb5f6e6e..8f3fcfaae4 100644
--- a/docs/IPLD.md
+++ b/docs/IPLD.md
@@ -3,64 +3,131 @@
## Table of Contents
- [Overview](#overview)
-- [Bundled Codecs](#bundled-codecs)
-- [Adding additional codecs](#adding-additional-codecs)
+- [Bundled BlockCodecs](#bundled-blockcodecs)
+- [Bundled Multihashes](#bundled-multihashes)
+- [Bundled Multibases](#bundled-multibases)
+- [Adding additional BlockCodecs, Multihashes and Multibases](#adding-additional-blockcodecs-multihashes-and-multibases)
- [Next steps](#next-steps)
## Overview
-The IPFS repo contains a blockstore that holds [Blocks](https://github.com/ipld/js-ipld-block). These blocks can be thought of as a [CID][] and associated byte array.
+The IPFS repo contains a blockstore that holds the data that makes up the files on the IPFS network. These blocks can be thought of as a [CID][] and associated byte array.
-The [CID][] contains a `codec` property that lets us know how to interpret the byte array associated with it.
+The [CID][] contains a `code` property that lets us know how to interpret the byte array associated with it.
-In order to perform that interpretation, an [IPLD Format][] must be loaded that corresponds to the `codec` property of the [CID][].
+In order to perform that interpretation, a [BlockCodec][] must be loaded that corresponds to the `code` property of the [CID][].
-## Bundled Codecs
+Similarly implementations of [Multihash][]es or [Multibase][]s must be available to be used.
-js-IPFS ships with three bundled codecs, the ones that are required to create and interpret [UnixFS][] structures.
+## Bundled BlockCodecs
+
+js-IPFS ships with four bundled codecs, the ones that are required to create and interpret [UnixFS][] structures.
These are:
-1. [ipld-dag-pb](https://github.com/ipld/js-ipld-dag-pb) - used for file and directory structures
-2. [ipld-raw](https://github.com/ipld/js-ipld-raw) - used for file data where imported with `raw-leaves=true`
-3. [ipld-dag-cbor](https://github.com/ipld/js-ipld-dag-cbor) - used for general storage of JavaScript Objects
+1. [@ipld/dag-pb](https://github.com/ipld/js-dag-pb) - used for file and directory structures
+2. [raw](https://github.com/multiformats/js-multiformats/blob/master/src/codecs/raw.js) - used for file data where imported with `--raw-leaves=true`
+3. [@ipld/dag-cbor](https://github.com/ipld/js-dag-cbor) - used for storage of JavaScript Objects with [CID] links to other blocks
+4. [json](https://github.com/multiformats/js-multiformats/blob/master/src/codecs/json.js) - used for storage of plain JavaScript Objects
+
+## Bundled Multihashes
+
+js-IPFS ships with all multihashes [exported by js-multiformats](https://github.com/multiformats/js-multiformats/tree/master/src/hashes), including `sha2-256` and others.
+
+Additional hashers can be configured using the `hashers` config property.
+
+## Bundled Multibases
+
+js-IPFS ships with all multibases [exported by js-multiformats](https://github.com/multiformats/js-multiformats/tree/master/src/bases), including `base58btc`, `base32` and others.
-## Adding additional codecs
+Additional bases can be configured using the `bases` config property.
+
+## Adding additional BlockCodecs, Multihashes and Multibases
If your application requires support for extra codecs, you can configure them as follows:
1. Configure the [IPLD layer](https://github.com/ipfs/js-ipfs/blob/master/packages/ipfs/docs/MODULE.md#optionsipld) of your IPFS daemon to support the codec. This step is necessary so the node knows how to prepare data received over HTTP to be passed to IPLD for serialization:
+
```javascript
- const ipfs = require('ipfs')
+ import { create } from 'ipfs'
+ import customBlockCodec from 'custom-blockcodec'
+ import customMultibase from 'custom-multibase'
+ import customMultihasher from 'custom-multihasher'
- const node = await ipfs({
+ const node = await create({
ipld: {
- // either specify them as part of the `formats` list
- formats: [
- require('my-format')
+ // either specify BlockCodecs as part of the `codecs` list
+ codecs: [
+ customBlockCodec
+ ],
+
+ // and/or supply a function to load them dynamically
+ loadCodec: async (codecNameOrCode) => {
+ return import(codecNameOrCode)
+ },
+
+ // either specify Multibase codecs as part of the `bases` list
+ bases: [
+ customMultibase
+ ],
+
+ // and/or supply a function to load them dynamically
+ loadBase: async (baseNameOrCode) => {
+ return import(baseNameOrCode)
+ },
+
+ // either specify Multihash hashers as part of the `hashers` list
+ hashers: [
+ customMultihasher
],
- // or supply a function to load them dynamically
- loadFormat: async (format) => {
- return require(format)
+ // and/or supply a function to load them dynamically
+ loadHasher: async (hashNameOrCode) => {
+ return import(hashNameOrCode)
}
}
})
+ ```
+
2. Configure your IPFS HTTP API Client to support the codec. This is necessary so that the client can send the data to the IPFS node over HTTP:
+
```javascript
- const ipfsHttpClient = require('ipfs-http-client')
+ import { create } from 'ipfs-http-client'
+ import customBlockCodec from 'custom-blockcodec'
+ import customMultibase from 'custom-multibase'
+ import customMultihasher from 'custom-multihasher'
- const client = ipfsHttpClient({
+ const client = create({
url: 'http://127.0.0.1:5002',
ipld: {
- // either specify them as part of the `formats` list
- formats: [
- require('my-format')
+ // either specify BlockCodecs as part of the `codecs` list
+ codecs: [
+ customBlockCodec
+ ],
+
+ // and/or supply a function to load them dynamically
+ loadCodec: async (codecNameOrCode) => {
+ return import(codecNameOrCode)
+ },
+
+ // either specify Multibase codecs as part of the `bases` list
+ bases: [
+ customMultibase
+ ],
+
+ // and/or supply a function to load them dynamically
+ loadBase: async (baseNameOrCode) => {
+ return import(baseNameOrCode)
+ },
+
+ // either specify Multihash hashers as part of the `hashers` list
+ hashers: [
+ customMultihasher
],
- // or supply a function to load them dynamically
- loadFormat: async (format) => {
- return require(format)
+ // and/or supply a function to load them dynamically
+ loadHasher: async (hashNameOrCode) => {
+ return import(hashNameOrCode)
}
}
})
@@ -68,8 +135,12 @@ If your application requires support for extra codecs, you can configure them as
## Next steps
-* See [examples/custom-ipld-formats](https://github.com/ipfs/js-ipfs/tree/master/examples/custom-ipld-formats) for runnable code that demonstrates the above with in-process IPFS nodes, IPFS run as a daemon and also the http client
+* See [examples/custom-ipld-formats](https://github.com/ipfs-examples/js-ipfs-examples/tree/master/examples/custom-ipld-formats) for runnable code that demonstrates the above with in-process IPFS nodes, IPFS run as a daemon and also the http client
+* Also [examples/traverse-ipld-graphs](https://github.com/ipfs-examples/js-ipfs-examples/tree/master/examples/traverse-ipld-graphs) which uses the [ipld-format-to-blockcodec](https://www.npmjs.com/package/ipld-format-to-blockcodec) module to use older [IPLD format][]s that have not been ported over to the new [BlockCodec][] interface, as well as additional [Multihash Hashers](https://www.npmjs.com/package/multiformats#multihash-hashers).
-[cid]: https://www.npmjs.com/package/cids
-[ipld format]: https://github.com/ipld/interface-ipld-format
+[cid]: https://docs.ipfs.io/concepts/content-addressing/
+[blockcodec]: https://www.npmjs.com/package/multiformats#multicodec-encoders--decoders--codecs
[unixfs]: https://github.com/ipfs/specs/blob/master/UNIXFS.md
+[ipld format]: https://github.com/ipld/interface-ipld-format
+[multihash]: https://github.com/multiformats/multihash
+[multibase]: https://github.com/multiformats/multibase
\ No newline at end of file
diff --git a/docs/MIGRATION-TO-ASYNC-AWAIT.md b/docs/MIGRATION-TO-ASYNC-AWAIT.md
index b9cb823987..718071a0d4 100644
--- a/docs/MIGRATION-TO-ASYNC-AWAIT.md
+++ b/docs/MIGRATION-TO-ASYNC-AWAIT.md
@@ -94,20 +94,20 @@ Libp2p `PeerId` instances are no longer returned from the API. If your applicati
Peer ID strings are also CIDs so converting them is simple:
```js
-const peerId = PeerId.createFromCID(peerIdStr)
+const peerId = PeerId.createFromB58String(peerIdStr)
```
You can get hold of the `PeerId` class using npm or in a script tag:
```js
-const PeerId = require('peer-id')
-const peerId = PeerId.createFromCID(peerIdStr)
+import { PeerId } from '@libp2p/interface-peer-id'
+const peerId = PeerId.createFromB58String(peerIdStr)
```
```html
```
@@ -120,7 +120,7 @@ Libp2p `PeerInfo` instances are no longer returned from the API. Instead, plain
Instantiate a new `PeerInfo` and add addresses to it:
```js
-const peerInfo = new PeerInfo(PeerId.createFromCID(info.id))
+const peerInfo = new PeerInfo(PeerId.createFromB58String(info.id))
info.addrs.forEach(addr => peerInfo.multiaddrs.add(addr))
```
@@ -128,8 +128,8 @@ You can get hold of the `PeerInfo` class using npm or in a script tag:
```js
const PeerInfo = require('peer-info')
-const PeerId = require('peer-id')
-const peerInfo = new PeerInfo(PeerId.createFromCID(info.id))
+import { PeerId } from '@libp2p/interface-peer-id'
+const peerInfo = new PeerInfo(PeerId.createFromB58String(info.id))
info.addrs.forEach(addr => peerInfo.multiaddrs.add(addr))
```
@@ -137,7 +137,7 @@ info.addrs.forEach(addr => peerInfo.multiaddrs.add(addr))
```
@@ -217,7 +217,7 @@ readable.on('end', () => {
Becomes:
```js
-const toStream = require('it-to-stream')
+import toStream from 'it-to-stream'
const readable = toStream.readable(ipfs.cat('QmHash'))
const decoder = new TextDecoder()
@@ -285,7 +285,7 @@ console.log(decoder.decode(data))
...which, by the way, could more succinctly be written as:
```js
-const toBuffer = require('it-to-buffer')
+import toBuffer from 'it-to-buffer'
const decoder = new TextDecoder()
const data = await toBuffer(ipfs.cat('QmHash'))
console.log(decoder.decode(data))
@@ -321,7 +321,7 @@ pipeline(
Becomes:
```js
-const toStream = require('it-to-stream')
+import toStream from 'it-to-stream'
const { pipeline, Writable } = require('stream')
const decoder = new TextDecoder()
@@ -353,7 +353,7 @@ Use `it-pipe` and a [for/await](https://developer.mozilla.org/en-US/docs/Web/Jav
e.g.
```js
-const fs = require('fs')
+import fs from 'fs'
const { pipeline } = require('stream')
const items = []
@@ -378,7 +378,7 @@ pipeline(
Becomes:
```js
-const fs = require('fs')
+import fs from 'fs'
const pipe = require('it-pipe')
const items = []
@@ -400,9 +400,9 @@ console.log(items)
...which, by the way, could more succinctly be written as:
```js
-const fs = require('fs')
+import fs from 'fs'
const pipe = require('it-pipe')
-const all = require('it-all')
+import all from 'it-all'
const items = await pipe(
fs.createReadStream('/path/to/file'),
@@ -420,7 +420,7 @@ Convert the async iterable to a readable stream.
e.g.
```js
-const fs = require('fs')
+import fs from 'fs'
const { pipeline } = require('stream')
const items = []
@@ -445,8 +445,8 @@ pipeline(
Becomes:
```js
-const toStream = require('it-to-stream')
-const fs = require('fs')
+import toStream from 'it-to-stream'
+import fs from 'fs'
const { pipeline } = require('stream')
const items = []
@@ -568,7 +568,7 @@ Becomes:
```js
const pipe = require('it-pipe')
-const concat = require('it-concat')
+import concat from 'it-concat'
const decoder = new TextDecoder()
const data = await pipe(
@@ -590,7 +590,7 @@ Use `it-pipe` and `it-all` to collect all items from an async iterable.
e.g.
```js
-const fs = require('fs')
+import fs from 'fs'
const toPull = require('stream-to-pull-stream')
pull(
@@ -605,7 +605,7 @@ pull(
Becomes:
```js
-const fs = require('fs')
+import fs from 'fs'
const file = await ipfs.add(fs.createReadStream('/path/to/file'))
@@ -619,7 +619,7 @@ Convert the async iterable to a pull stream.
e.g.
```js
-const fs = require('fs')
+import fs from 'fs'
const toPull = require('stream-to-pull-stream')
pull(
@@ -634,7 +634,7 @@ pull(
Becomes:
```js
-const fs = require('fs')
+import fs from 'fs'
const streamToPull = require('stream-to-pull-stream')
const itToPull = require('async-iterator-to-pull-stream')
@@ -685,7 +685,7 @@ for await (const file of addSource) {
Alternatively you can buffer up the results using the `it-all` utility:
```js
-const all = require('it-all')
+import all from 'it-all'
const results = await all(ipfs.addAll([
{ path: 'root/1.txt', content: 'one' },
@@ -744,7 +744,7 @@ Reading files.
e.g.
```js
-const fs = require('fs')
+import fs from 'fs'
const data = await ipfs.cat('/ipfs/QmHash')
@@ -759,8 +759,8 @@ Becomes:
```js
const pipe = require('it-pipe')
-const toIterable = require('stream-to-it')
-const fs = require('fs')
+import toIterable from 'stream-to-it'
+import fs from 'fs'
// Note that as chunks arrive they are written to the file and memory can be freed and re-used
await pipe(
@@ -774,8 +774,8 @@ console.log('done')
Alternatively you can buffer up the chunks using the `it-concat` utility (not recommended!):
```js
-const fs = require('fs')
-const concat = require('it-concat')
+import fs from 'fs'
+import concat from 'it-concat'
const data = await concat(ipfs.cat('/ipfs/QmHash'))
@@ -812,7 +812,7 @@ for await (const file of filesSource) {
Alternatively you can buffer up the directory listing using the `it-all` utility:
```js
-const all = require('it-all')
+import all from 'it-all'
const results = await all(ipfs.ls('/ipfs/QmHash'))
@@ -905,7 +905,7 @@ files.forEach(file => {
Becomes:
```js
-const fs = require('fs')
+import fs from 'fs'
const ipfs = IpfsHttpClient()
const file = await ipfs.add(fs.createReadStream('/path/to/file.txt'))
diff --git a/docs/MODULE.md b/docs/MODULE.md
index e970e1b149..23e612d708 100644
--- a/docs/MODULE.md
+++ b/docs/MODULE.md
@@ -23,11 +23,14 @@ Use the IPFS module as a dependency of your project to spawn in process instance
- [`node.start()`](#nodestart)
- [Static types and utils](#static-types-and-utils)
- [Glob source](#glob-source)
- - [`globSource(path, [options])`](#globsourcepath-options)
+ - [`globSource(path, pattern, [options])`](#globsourcepath-pattern-options)
- [Example](#example)
- [URL source](#url-source)
- [`urlSource(url)`](#urlsourceurl)
- [Example](#example-1)
+ - [Path](#path)
+ - [`path()`](#path-1)
+ - [Example](#example-2)
## Getting started
@@ -71,9 +74,9 @@ const node = await IPFS.create({ repo: '/var/ipfs/data' })
### `options.repoAutoMigrate`
-| Type | Default |
-|------|---------|
-| `boolean` | `true` |
+| Type | Default |
+| --------- | ------- |
+| `boolean` | `true` |
`js-ipfs` comes bundled with a tool that automatically migrates your IPFS repository when a new version is available.
@@ -83,9 +86,9 @@ a case, you should provide a way to trigger migrations manually.**
### `options.init`
-| Type | Default |
-|------|---------|
-| boolean or object | `true` |
+| Type | Default |
+| ----------------- | ------- |
+| boolean or object | `true` |
Perform repo initialization steps when creating the IPFS node.
@@ -99,7 +102,7 @@ Instead of a boolean, you may provide an object with custom initialization optio
- `privateKey` (string/PeerId) A pre-generated private key to use. Can be either a base64 string or a [PeerId](https://github.com/libp2p/js-peer-id) instance. **NOTE: This overrides `bits`.**
```js
// Generating a Peer ID:
- const PeerId = require('peer-id')
+ import { PeerId } from '@libp2p/interface-peer-id'
// Generates a new Peer ID, complete with public/private keypair
// See https://github.com/libp2p/js-peer-id
const peerId = await PeerId.create({ bits: 2048 })
@@ -110,24 +113,24 @@ Instead of a boolean, you may provide an object with custom initialization optio
### `options.start`
-| Type | Default |
-|------|---------|
-| `boolean` | `true` |
+| Type | Default |
+| --------- | ------- |
+| `boolean` | `true` |
- If `false`, do not automatically start the IPFS node. Instead, you’ll need to manually call [`node.start()`](#nodestart) yourself.
+If `false`, do not automatically start the IPFS node. Instead, you’ll need to manually call [`node.start()`](#nodestart) yourself.
### `options.pass`
-| Type | Default |
-|------|---------|
-| string | `null` |
+| Type | Default |
+| ------ | ------- |
+| string | `null` |
A passphrase to encrypt/decrypt your keys.
### `options.silent`
-| Type | Default |
-|------|---------|
+| Type | Default |
+| ------- | ------- |
| Boolean | `false` |
Prevents all logging output from the IPFS node.
@@ -138,25 +141,25 @@ Prevents all logging output from the IPFS node.
|------|---------|
| object | `{ enabled: true, hop: { enabled: false, active: false } }` |
-Configure circuit relay (see the [circuit relay tutorial](https://github.com/ipfs/js-ipfs/tree/master/examples/circuit-relaying) to learn more).
+Configure circuit relay (see the [circuit relay tutorial](https://github.com/ipfs-examples/js-ipfs-examples/tree/master/examples/circuit-relaying) to learn more).
- `enabled` (boolean): Enable circuit relay dialer and listener. (Default: `true`)
- `hop` (object)
- - `enabled` (boolean): Make this node a relay (other nodes can connect *through* it). (Default: `false`)
- - `active` (boolean): Make this an *active* relay node. Active relay nodes will attempt to dial a destination peer even if that peer is not yet connected to the relay. (Default: `false`)
+ - `enabled` (boolean): Make this node a relay (other nodes can connect *through* it). (Default: `false`)
+ - `active` (boolean): Make this an *active* relay node. Active relay nodes will attempt to dial a destination peer even if that peer is not yet connected to the relay. (Default: `false`)
### `options.offline`
-| Type | Default |
-|------|---------|
+| Type | Default |
+| ------- | ------- |
| Boolean | `false` |
Run ipfs node offline. The node does not connect to the rest of the network but provides a local API.
### `options.preload`
-| Type | Default |
-|------|---------|
+| Type | Default |
+| ------ | ------------------------------------- |
| object | `{ enabled: true, addresses: [...] }` |
Configure remote preload nodes. The remote will preload content added on this node, and also attempt to preload objects requested by this node.
@@ -166,8 +169,8 @@ Configure remote preload nodes. The remote will preload content added on this no
### `options.EXPERIMENTAL`
-| Type | Default |
-|------|---------|
+| Type | Default |
+| ------ | ---------------------------------------- |
| object | `{ ipnsPubsub: false, sharding: false }` |
Enable and configure experimental features.
@@ -179,46 +182,60 @@ Enable and configure experimental features.
| Type | Default |
|------|---------|
-| object | [`config-nodejs.js`](https://github.com/ipfs/js-ipfs/blob/master/packages/ipfs-core/src/runtime/config-nodejs.js) in Node.js, [`config-browser.js`](https://github.com/ipfs/js-ipfs/blob/master/packages/ipfs-core/src/runtime/config-browser.js) in browsers |
+| object | [`config.js`](https://github.com/ipfs/js-ipfs/blob/master/packages/ipfs-core-config/src/config.js) in Node.js, [`config-browser.js`](https://github.com/ipfs/js-ipfs/blob/master/packages/ipfs-core-config/src/config.browser.js) in browsers |
-Modify the default IPFS node config. This object will be *merged* with the default config; it will not replace it. The default config is documented in [the js-ipfs config file docs](./docs/CONFIG.md).
+Modify the default IPFS node config. This object will be *merged* with the default config; it will not replace it. The default config is documented in [the js-ipfs config file docs](./CONFIG.md).
### `options.ipld`
- | Type | Default |
+| Type | Default |
|------|---------|
-| object | [`ipld.js`](https://github.com/ipfs/js-ipfs/blob/master/packages/ipfs-core/src/runtime/ipld.js) |
+| object | [`ipld.js`](https://github.com/ipfs/js-ipfs/blob/master/packages/ipfs-core-config/src/ipld.js) |
- Modify the default IPLD config. This object will be *merged* with the default config; it will not replace it. Check IPLD [docs](https://github.com/ipld/js-ipld#ipld-constructor) for more information on the available options.
+Modify the default IPLD config. This object will be *merged* with the default config; it will not replace it. Check IPLD [docs](https://github.com/ipld/js-ipld#ipld-constructor) for more information on the available options.
- > Browser config does **NOT** include by default all the IPLD formats. Only `ipld-dag-pb`, `ipld-dag-cbor` and `ipld-raw` are included.
+> Browser config does **NOT** include by default all the IPLD formats. Only `ipld-dag-pb`, `ipld-dag-cbor` and `ipld-raw` are included.
- To add support for other formats we provide two options, one sync and another async.
+To add support for other formats we provide two options, one sync and another async.
- Examples for the sync option:
+Examples for the sync option:
ESM Environments
```js
import ipldGit from 'ipld-git'
import ipldBitcoin from 'ipld-bitcoin'
+import { convert } from 'ipld-format-to-blockcodec'
const node = await IPFS.create({
ipld: {
- formats: [ipldGit, ipldBitcoin]
+ codecs: [
+ convert(ipldGit),
+ convert(ipldBitcoin)
+ ]
}
})
```
+
Commonjs Environments
```js
+const IPFS = require('ipfs')
+const ipldGit = require('ipld-git')
+const ipldBitcoin = require('ipld-bitcoin')
+const { convert } = require('ipld-format-to-blockcodec')
+
const node = await IPFS.create({
ipld: {
- formats: [require('ipld-git'), require('ipld-bitcoin')]
+ codecs: [
+ convert(ipldGit),
+ convert(ipldBitcoin)
+ ]
}
})
```
+
Using script tags
@@ -226,29 +243,34 @@ const node = await IPFS.create({
+
```
+
- Examples for the async option:
+Examples for the async option:
ESM Environments
```js
const node = await IPFS.create({
ipld: {
- async loadFormat (codec) {
+ async loadCodec (codec) {
if (codec === multicodec.GIT_RAW) {
- return import('ipld-git') // This is a dynamic import
+ return convert(await import('ipld-git')) // This is a dynamic import
} else {
throw new Error('unable to load format ' + multicodec.print[codec])
}
@@ -256,11 +278,13 @@ const node = await IPFS.create({
}
})
```
+
> For more information about dynamic imports please check [webpack docs](https://webpack.js.org/guides/code-splitting/#dynamic-imports) or search your bundler documention.
Using dynamic imports will tell your bundler to create a separate file (normally called *chunk*) that will **only** be requested by the browser if it's really needed. This strategy will reduce your bundle size and load times without removing any functionality.
With Webpack IPLD formats can even be grouped together using magic comments `import(/* webpackChunkName: "ipld-formats" */ 'ipld-git')` to produce a single file with all of them.
+
Commonjs Environments
@@ -278,6 +302,7 @@ const node = await IPFS.create({
}
})
```
+
Using Script tags
@@ -309,19 +334,19 @@ const node = await self.IPFS.create({
})
```
-
+
### `options.libp2p`
| Type | Default |
|------|---------|
-| object | [`libp2p-nodejs.js`](../src/core/runtime/libp2p-nodejs.js) in Node.js, [`libp2p-browser.js`](../src/core/runtime/libp2p-browser.js) in browsers |
-| function | [`libp2p bundle`](https://github.com/ipfs/js-ipfs/tree/master/examples/custom-libp2p) |
+| object | [`libp2p-nodejs.js`](https://github.com/ipfs/js-ipfs/tree/master/packages/ipfs-core-config/src/libp2p-nodejs.js) in Node.js, [`libp2p-browser.js`](https://github.com/ipfs/js-ipfs/tree/master/packages/ipfs-core-config/src)/libp2p-browser.js) in browsers |
+| function | [`libp2p bundle`](https://github.com/ipfs-examples/js-ipfs-examples/tree/master/examples/custom-libp2p) |
The libp2p option allows you to build your libp2p node by configuration, or via a bundle function. If you are looking to just modify the below options, using the object format is the quickest way to get the default features of libp2p. If you need to create a more customized libp2p node, such as with custom transports or peer/content routers that need some of the ipfs data on startup, a custom bundle is a great way to achieve this.
-You can see the bundle in action in the [custom libp2p example](https://github.com/ipfs/js-ipfs/tree/master/examples/custom-libp2p).
+You can see the bundle in action in the [custom libp2p example](https://github.com/ipfs-examples/js-ipfs-examples/tree/master/examples/custom-libp2p).
Please see [libp2p/docs/CONFIGURATION.md](https://github.com/libp2p/js-libp2p/blob/master/doc/CONFIGURATION.md) for the list of options libp2p supports.
@@ -340,7 +365,7 @@ console.log('Node is ready to use but not started!')
try {
await node.start()
console.log('Node started!')
-} catch (error) {
+} catch (/** @type {any} */ error) {
console.error('Node failed to start!', error)
}
```
@@ -352,14 +377,14 @@ Aside from the default export, `ipfs` exports various types and utilities that a
- [`crypto`](https://www.npmjs.com/package/libp2p-crypto)
- [`isIPFS`](https://www.npmjs.com/package/is-ipfs)
- [`Buffer`](https://www.npmjs.com/package/buffer)
-- [`PeerId`](https://www.npmjs.com/package/peer-id)
+- [`PeerId`](https://docs.libp2p.io/concepts/peer-id/)
- [`PeerInfo`](https://www.npmjs.com/package/peer-info)
- [`multiaddr`](https://www.npmjs.com/package/multiaddr)
- [`multibase`](https://www.npmjs.com/package/multibase)
- [`multihash`](https://www.npmjs.com/package/multihashes)
- [`multihashing`](https://www.npmjs.com/package/multihashing-async)
- [`multicodec`](https://www.npmjs.com/package/multicodec)
-- [`CID`](https://www.npmjs.com/package/cids)
+- [`CID`](https://docs.ipfs.io/concepts/content-addressing)
These can be accessed like this, for example:
@@ -373,12 +398,11 @@ import { CID } from 'ipfs'
A utility to allow files on the file system to be easily added to IPFS.
-###### `globSource(path, [options])`
+###### `globSource(path, pattern, [options])`
- `path`: A path to a single file or directory to glob from
+- `pattern`: A pattern to match files under `path`
- `options`: Optional options
-- `options.recursive`: If `path` is a directory, use option `{ recursive: true }` to add the directory and all its sub-directories.
-- `options.ignore`: To exclude file globs from the directory, use option `{ ignore: ['ignore/this/folder/**', 'and/this/file'] }`.
- `options.hidden`: Hidden/dot files (files or folders starting with a `.`, for example, `.git/`) are not included by default. To add them, use the option `{ hidden: true }`.
Returns an async iterable that yields `{ path, content }` objects suitable for passing to `ipfs.add`.
@@ -386,10 +410,11 @@ Returns an async iterable that yields `{ path, content }` objects suitable for p
###### Example
```js
-const IPFS = require('ipfs')
-const { globSource } = IPFS
-const ipfs = await IPFS.create()
-for await (const file of ipfs.addAll(globSource('./docs', { recursive: true }))) {
+import { create, globSource } from 'ipfs'
+
+const ipfs = await create()
+
+for await (const file of ipfs.addAll(globSource('./docs', '**/*'))) {
console.log(file)
}
/*
@@ -420,9 +445,9 @@ Returns an async iterable that yields `{ path, content }` objects suitable for p
###### Example
```js
-const IPFS = require('ipfs')
-const { urlSource } = IPFS
-const ipfs = await IPFS.create()
+import { create, urlSource } from 'ipfs'
+
+const ipfs = await create()
const file = await ipfs.add(urlSource('https://ipfs.io/images/ipfs-logo.svg'))
console.log(file)
@@ -435,3 +460,21 @@ console.log(file)
}
*/
```
+
+##### Path
+
+A function that returns the path to the js-ipfs CLI.
+
+This is analogous to the `.path()` function exported by the [go-ipfs](https://www.npmjs.com/package/go-ipfs) module.
+
+###### `path()`
+
+Returns the path to the js-ipfs CLI
+
+###### Example
+
+```js
+import { path } from 'ipfs'
+
+console.info(path()) // /foo/bar/node_modules/ipfs/src/cli.js
+```
diff --git a/docs/core-api/BITSWAP.md b/docs/core-api/BITSWAP.md
index 8c4eb0c62f..41cc548399 100644
--- a/docs/core-api/BITSWAP.md
+++ b/docs/core-api/BITSWAP.md
@@ -62,7 +62,7 @@ A great source of [examples][] can be found in the tests for this API.
| Name | Type | Default | Description |
| ---- | ---- | ------- | ----------- |
-| peerId | [PeerId][], [CID][], `String` or `Uint8Array` | A peer ID to return the wantlist for |
+| peerId | [PeerId][] | A peer ID to return the wantlist for |
### Options
@@ -159,7 +159,7 @@ The returned object contains the following keys:
- `provideBufLen` is an integer.
- `wantlist` (array of [CID][cid]s)
-- `peers` (array of peer IDs represented by strings)
+- `peers` (array of [PeerId][peerId]s)
- `blocksReceived` is a [BigInt][1]
- `dataReceived` is a [BigInt][1]
- `blocksSent` is a [BigInt][1]
@@ -192,6 +192,6 @@ A great source of [examples][] can be found in the tests for this API.
[1]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/BigInt
[examples]: https://github.com/ipfs/js-ipfs/blob/master/packages/interface-ipfs-core/src/bitswap
-[cid]: https://www.npmjs.com/package/cids
-[peerid]: https://www.npmjs.com/package/peer-id
+[cid]: https://docs.ipfs.io/concepts/content-addressing
+[peerid]: https://docs.libp2p.io/concepts/peer-id/
[AbortSignal]: https://developer.mozilla.org/en-US/docs/Web/API/AbortSignal
diff --git a/docs/core-api/BLOCK.md b/docs/core-api/BLOCK.md
index e0f54f1e85..d325971b8e 100644
--- a/docs/core-api/BLOCK.md
+++ b/docs/core-api/BLOCK.md
@@ -39,18 +39,19 @@ An optional object which may have the following keys:
| ---- | ---- | ------- | ----------- |
| timeout | `Number` | `undefined` | A timeout in ms |
| signal | [AbortSignal][] | `undefined` | Can be used to cancel any long running requests started as a result of this call |
+| preload | `boolean` | `false` | Whether to preload all blocks created during this operation |
### Returns
| Type | Description |
| -------- | -------- |
-| `Promise` | A [Block][block] type object, containing both the data and the hash of the block |
+| `Promise` | A Uint8Array containing the data of the block |
### Example
```JavaScript
const block = await ipfs.block.get(cid)
-console.log(block.data)
+console.log(block)
```
A great source of [examples][] can be found in the tests for this API.
@@ -63,7 +64,7 @@ A great source of [examples][] can be found in the tests for this API.
| Name | Type | Description |
| ---- | ---- | ----------- |
-| block | A `Uint8Array` or [Block][] instance | The block or data to store |
+| block | `Uint8Array` | The block of data to store |
### Options
@@ -71,22 +72,20 @@ An optional object which may have the following keys:
| Name | Type | Default | Description |
| ---- | ---- | ------- | ----------- |
-| cid | [CID][] | `undefined` | A CID to store the block under |
| format | `String` | `'dag-pb'` | The codec to use to create the CID |
| mhtype | `String` | `sha2-256` | The hashing algorithm to use to create the CID |
-| mhlen | `Number` | | |
+| mhlen | `Number` | `undefined` | The hash length (only relevant for `go-ipfs`) |
| version | `Number` | `0` | The version to use to create the CID |
| pin | `boolean` | `false` | If true, pin added blocks recursively |
| timeout | `Number` | `undefined` | A timeout in ms |
| signal | [AbortSignal][] | `undefined` | Can be used to cancel any long running requests started as a result of this call |
-
-**Note:** If you pass a [`Block`][block] instance as the block parameter, you don't need to pass options, as the block instance will carry the CID value as a property.
+| preload | `boolean` | `false` | Whether to preload all blocks created during this operation |
### Returns
| Type | Description |
| -------- | -------- |
-| `Promise` | A [Block][block] type object, containing both the data and the hash of the block |
+| `Promise` | A [CID][CID] type object containing the hash of the block |
### Example
@@ -97,20 +96,6 @@ const decoder = new TextDecoder()
const block = await ipfs.block.put(buf)
-console.log(decoder.decode(block.data))
-// Logs:
-// a serialized object
-console.log(block.cid.toString())
-// Logs:
-// the CID of the object
-
-// With custom format and hashtype through CID
-const CID = require('cids')
-const buf = new TextEncoder().encode('another serialized object')
-const cid = new CID(1, 'dag-pb', multihash)
-
-const block = await ipfs.block.put(blob, cid)
-
console.log(decoder.decode(block.data))
// Logs:
// a serialized object
@@ -191,6 +176,7 @@ An optional object which may have the following keys:
| ---- | ---- | ------- | ----------- |
| timeout | `Number` | `undefined` | A timeout in ms |
| signal | [AbortSignal][] | `undefined` | Can be used to cancel any long running requests started as a result of this call |
+| preload | `boolean` | `false` | Whether to preload all blocks created during this operation |
### Returns
@@ -211,7 +197,7 @@ the returned object has the following keys:
```JavaScript
const multihashStr = 'QmQULBtTjNcMwMr4VMNknnVv3RpytrLSdgpvMcTnfNhrBJ'
-const cid = new CID(multihashStr)
+const cid = CID.parse(multihashStr)
const stats = await ipfs.block.stat(cid)
console.log(stats.cid.toString())
@@ -226,4 +212,4 @@ A great source of [examples][] can be found in the tests for this API.
[multihash]: https://github.com/multiformats/multihash
[examples]: https://github.com/ipfs/js-ipfs/blob/master/packages/interface-ipfs-core/src/block
[AbortSignal]: https://developer.mozilla.org/en-US/docs/Web/API/AbortSignal
-[cid]: https://www.npmjs.com/package/cids
+[cid]: https://docs.ipfs.io/concepts/content-addressing
diff --git a/docs/core-api/DAG.md b/docs/core-api/DAG.md
index 33d59f79e8..92dc51220e 100644
--- a/docs/core-api/DAG.md
+++ b/docs/core-api/DAG.md
@@ -2,31 +2,76 @@
> The dag API comes to replace the `object API`, it supports the creation and manipulation of dag-pb object, as well as other IPLD formats (i.e dag-cbor, ethereum-block, git, etc)
-- [`ipfs.dag.put(dagNode, [options])`](#ipfsdagputdagnode-options)
+- [`ipfs.dag.export(cid, [options])`](#ipfsdagexportcid-options)
- [Parameters](#parameters)
- [Options](#options)
- [Returns](#returns)
- [Example](#example)
-- [`ipfs.dag.get(cid, [options])`](#ipfsdaggetcid-options)
+- [`ipfs.dag.put(dagNode, [options])`](#ipfsdagputdagnode-options)
- [Parameters](#parameters-1)
- [Options](#options-1)
- [Returns](#returns-1)
- [Example](#example-1)
-- [`ipfs.dag.tree(cid, [options])`](#ipfsdagtreecid-options)
+- [`ipfs.dag.get(cid, [options])`](#ipfsdaggetcid-options)
- [Parameters](#parameters-2)
- [Options](#options-2)
- [Returns](#returns-2)
- [Example](#example-2)
-- [`ipfs.dag.resolve(ipfsPath, [options])`](#ipfsdagresolveipfspath-options)
+- [`ipfs.dag.import(source, [options])`](#ipfsdagimportsource-options)
- [Parameters](#parameters-3)
- [Options](#options-3)
- [Returns](#returns-3)
- [Example](#example-3)
+- [`ipfs.dag.resolve(ipfsPath, [options])`](#ipfsdagresolveipfspath-options)
+ - [Parameters](#parameters-4)
+ - [Options](#options-4)
+ - [Returns](#returns-4)
+ - [Example](#example-4)
_Explore the DAG API through interactive coding challenges in our ProtoSchool tutorials:_
- _[P2P data links with content addressing](https://proto.school/#/basics/) (beginner)_
- _[Blogging on the Decentralized Web](https://proto.school/#/blog/) (intermediate)_
+## `ipfs.dag.export(cid, [options])`
+
+> Returns a stream of Uint8Arrays that make up a [CAR file][]
+
+Exports a CAR for the entire DAG available from the given root CID. The CAR will have a single
+root and IPFS will attempt to fetch and bundle all blocks that are linked within the connected
+DAG.
+
+### Parameters
+
+| Name | Type | Description |
+| ---- | ---- | ----------- |
+| cid | [CID][] | The root CID of the DAG we wish to export |
+
+### Options
+
+An optional object which may have the following keys:
+
+| Name | Type | Default | Description |
+| ---- | ---- | ------- | ----------- |
+| timeout | `Number` | `undefined` | A timeout in ms |
+| signal | [AbortSignal][] | `undefined` | Can be used to cancel any long running requests started as a result of this call |
+
+### Returns
+
+| Type | Description |
+| -------- | -------- |
+| `AsyncIterable` | A stream containing the car file bytes |
+
+### Example
+
+```JavaScript
+import { Readable } from 'stream'
+
+const out = await ipfs.dag.export(cid)
+
+Readable.from(out).pipe(fs.createWriteStream('example.car'))
+```
+
+A great source of [examples][] can be found in the tests for this API.
## `ipfs.dag.put(dagNode, [options])`
> Store an IPLD format node
@@ -43,12 +88,13 @@ An optional object which may have the following keys:
| Name | Type | Default | Description |
| ---- | ---- | ------- | ----------- |
-| format | `String` | `'dag-cbor'` | The IPLD format multicodec |
+| storeCodec | `String` | `'dag-cbor'` | The codec that the stored object will be encoded with |
+| inputCodec | `String` | `undefined` | If an already encoded object is provided (as a `Uint8Array`), the codec that the object is encoded with, otherwise it is assumed the `dagNode` argument is an object to be encoded |
| hashAlg | `String` | `'sha2-256'` | The hash algorithm to be used over the serialized DAG node |
| cid | [CID][] | `'dag-cbor'` | The IPLD format multicodec |
| pin | `boolean` | `false` | Pin this node when adding to the blockstore |
| timeout | `Number` | `undefined` | A timeout in ms |
-| signal | [AbortSignal][] | `undefined` | Can be used to cancel any long running requests started as a result of this call |
+| signal | [AbortSignal][] | `undefined` | Can be used to cancel any long running requests started as a result of this call |
**Note**: You should pass `cid` or the `format` & `hashAlg` pair but _not both_.
@@ -62,7 +108,7 @@ An optional object which may have the following keys:
```JavaScript
const obj = { simple: 'object' }
-const cid = await ipfs.dag.put(obj, { format: 'dag-cbor', hashAlg: 'sha3-512' })
+const cid = await ipfs.dag.put(obj, { storeCodec: 'dag-cbor', hashAlg: 'sha2-512' })
console.log(cid.toString())
// zBwWX9ecx5F4X54WAjmFLErnBT6ByfNxStr5ovowTL7AhaUR98RWvXPS1V3HqV1qs3r5Ec5ocv7eCdbqYQREXNUfYNuKG
@@ -115,7 +161,7 @@ const obj = {
}
}
-const cid = await ipfs.dag.put(obj, { format: 'dag-cbor', hashAlg: 'sha2-256' })
+const cid = await ipfs.dag.put(obj, { storeCodec: 'dag-cbor', hashAlg: 'sha2-256' })
console.log(cid.toString())
// zdpuAmtur968yprkhG9N5Zxn6MFVoqAWBbhUAkNLJs2UtkTq5
@@ -146,15 +192,18 @@ await getAndLog(cid, '/c/ca/1')
A great source of [examples][] can be found in the tests for this API.
-## `ipfs.dag.tree(cid, [options])`
+## `ipfs.dag.import(source, [options])`
-> Enumerate all the entries in a graph
+> Adds one or more [CAR file][]s full of blocks to the repo for this node
+
+Import all blocks from one or more CARs and optionally recursively pin the roots identified
+within the CARs.
### Parameters
| Name | Type | Description |
| ---- | ---- | ----------- |
-| cid | [CID][] | A DAG node that follows one of the supported IPLD formats |
+| sources | `AsyncIterable` | One or more [CAR file][] streams |
### Options
@@ -162,8 +211,7 @@ An optional object which may have the following keys:
| Name | Type | Default | Description |
| ---- | ---- | ------- | ----------- |
-| path | `String` | An optional path within the DAG to resolve |
-| recursive | `boolean` | `false` | If set to true, it will follow the links and continuously run tree on them, returning all the paths in the graph |
+| pinRoots | `boolean` | `true` | Whether to recursively pin each root to the blockstore |
| timeout | `Number` | `undefined` | A timeout in ms |
| signal | [AbortSignal][] | `undefined` | Can be used to cancel any long running requests started as a result of this call |
@@ -171,39 +219,17 @@ An optional object which may have the following keys:
| Type | Description |
| -------- | -------- |
-| `Promise` | An array with the paths passed |
+| `AsyncIterable<{ root: { cid: CID, pinErrorMsg?: string } }>` | A stream containing all roots from the car file(s) that are pinned |
### Example
```JavaScript
-// example obj
-const obj = {
- a: 1,
- b: [1, 2, 3],
- c: {
- ca: [5, 6, 7],
- cb: 'foo'
- }
-}
+import fs from 'fs'
-const cid = await ipfs.dag.put(obj, { format: 'dag-cbor', hashAlg: 'sha2-256' })
-console.log(cid.toString())
-// zdpuAmtur968yprkhG9N5Zxn6MFVoqAWBbhUAkNLJs2UtkTq5
-
-const result = await ipfs.dag.tree('zdpuAmtur968yprkhG9N5Zxn6MFVoqAWBbhUAkNLJs2UtkTq5')
-console.log(result)
-// Logs:
-// a
-// b
-// b/0
-// b/1
-// b/2
-// c
-// c/ca
-// c/ca/0
-// c/ca/1
-// c/ca/2
-// c/cb
+for await (const result of ipfs.dag.import(fs.createReadStream('./path/to/archive.car'))) {
+ console.info(result)
+ // Qmfoo
+}
```
A great source of [examples][] can be found in the tests for this API.
@@ -247,7 +273,7 @@ const obj = {
}
}
-const cid = await ipfs.dag.put(obj, { format: 'dag-cbor', hashAlg: 'sha2-256' })
+const cid = await ipfs.dag.put(obj, { storeCodec: 'dag-cbor', hashAlg: 'sha2-256' })
console.log(cid.toString())
// bafyreicyer3d34cutdzlsbe2nqu5ye62mesuhwkcnl2ypdwpccrsecfmjq
@@ -262,7 +288,7 @@ console.log(result)
A great source of [examples][] can be found in the tests for this API.
-
[examples]: https://github.com/ipfs/js-ipfs/blob/master/packages/interface-ipfs-core/src/dag
-[cid]: https://www.npmjs.com/package/cids
+[cid]: https://docs.ipfs.io/concepts/content-addressing
[AbortSignal]: https://developer.mozilla.org/en-US/docs/Web/API/AbortSignal
+[CAR file]: https://ipld.io/specs/transport/car/
diff --git a/docs/core-api/DHT.md b/docs/core-api/DHT.md
index e27c88d6e5..964bb20eed 100644
--- a/docs/core-api/DHT.md
+++ b/docs/core-api/DHT.md
@@ -39,7 +39,7 @@
| Name | Type | Description |
| ---- | ---- | ----------- |
-| peerId | [PeerID][] or [CID][] | The Peer ID of the node to find |
+| peerId | [PeerID][] | The Peer ID of the node to find |
### Options
@@ -61,7 +61,7 @@ An optional object which may have the following keys:
```JavaScript
const info = await ipfs.dht.findPeer('QmcZf59bWwK5XFi76CZX8cbJ4BhTzzA3gU1ZjYZcYW3dwt')
-console.log(info.id)
+console.log(info.id.toString())
/*
QmcZf59bWwK5XFi76CZX8cbJ4BhTzzA3gU1ZjYZcYW3dwt
*/
@@ -109,7 +109,9 @@ Note that if `options.numProviders` are not found an error will be thrown.
### Example
```JavaScript
-const providers = ipfs.dht.findProvs('QmdPAhQRxrDKqkGPvQzBvjYe3kU8kiEEAd2J6ETEamKAD9')
+import { CID } from 'multiformats/cid'
+
+const providers = ipfs.dht.findProvs(CID.parse('QmdPAhQRxrDKqkGPvQzBvjYe3kU8kiEEAd2J6ETEamKAD9'))
for await (const provider of providers) {
console.log(provider.id.toString())
@@ -191,7 +193,7 @@ Prints objects like:
{
extra: 'dial backoff',
- id: 'QmWtewmnzJiQevJPSmG9s8aC7yRfK2WXTCdRc1pCbDFu6z',
+ id: PeerId('QmWtewmnzJiQevJPSmG9s8aC7yRfK2WXTCdRc1pCbDFu6z'),
responses: [
{
addrs: [
@@ -199,7 +201,7 @@ Prints objects like:
Multiaddr(/ip4/172.20.0.3/tcp/4001),
Multiaddr(/ip4/35.178.190.196/tcp/1024)
],
- id: 'QmRz5Nth4jTFuJJKcjyb6uwvrhxWbruRvamKY2PJxwJKw8'
+ id: PeerId('QmRz5Nth4jTFuJJKcjyb6uwvrhxWbruRvamKY2PJxwJKw8')
}
],
type: 1
@@ -210,11 +212,11 @@ https://github.com/libp2p/go-libp2p-core/blob/6e566d10f4a5447317a66d64c7459954b9
*/
```
-Alternatively you can simply "consume" the iterable:
+Alternatively you can simply "drain" the iterable:
```js
-const { consume } = require('streaming-iterables')
-await consume(ipfs.dht.provide('QmbWqxBEKC3P8tqsKc98xmWNzrzDtRLMiMPL8wBuTGsMnR'))
+import drain from 'it-drain'
+await drain(ipfs.dht.provide('QmbWqxBEKC3P8tqsKc98xmWNzrzDtRLMiMPL8wBuTGsMnR'))
```
A great source of [examples][] can be found in the tests for this API.
@@ -258,7 +260,7 @@ Prints objects like:
{
extra: 'dial backoff',
- id: 'QmWtewmnzJiQevJPSmG9s8aC7yRfK2WXTCdRc1pCbDFu6z',
+ id: PeerId('QmWtewmnzJiQevJPSmG9s8aC7yRfK2WXTCdRc1pCbDFu6z'),
responses: [
{
addrs: [
@@ -266,7 +268,7 @@ Prints objects like:
Multiaddr(/ip4/172.20.0.3/tcp/4001),
Multiaddr(/ip4/35.178.190.196/tcp/1024)
],
- id: 'QmRz5Nth4jTFuJJKcjyb6uwvrhxWbruRvamKY2PJxwJKw8'
+ id: PeerId('QmRz5Nth4jTFuJJKcjyb6uwvrhxWbruRvamKY2PJxwJKw8')
}
],
type: 1
@@ -277,18 +279,18 @@ https://github.com/libp2p/go-libp2p-core/blob/6e566d10f4a5447317a66d64c7459954b9
*/
```
-Alternatively you can simply "consume" the iterable:
+Alternatively you can simply "drain" the iterable:
```js
-const { consume } = require('streaming-iterables')
-await consume(ipfs.dht.put(key, value))
+import drain from 'it-drain'
+await drain(ipfs.dht.put(key, value))
```
A great source of [examples][] can be found in the tests for this API.
## `ipfs.dht.query(peerId, [options])`
-> Find the closest Peer IDs to a given Peer ID by querying the DHT.
+> Find the closest Peer IDs to a given Peer ID or CID by querying the DHT.
### Parameters
@@ -331,7 +333,7 @@ Prints objects like:
Multiaddr(/ip4/172.20.0.3/tcp/4001),
Multiaddr(/ip4/35.178.190.196/tcp/1024)
],
- id: 'QmRz5Nth4jTFuJJKcjyb6uwvrhxWbruRvamKY2PJxwJKw8'
+ id: PeerId('QmRz5Nth4jTFuJJKcjyb6uwvrhxWbruRvamKY2PJxwJKw8')
}
],
type: 1
@@ -345,6 +347,6 @@ https://github.com/libp2p/go-libp2p-core/blob/6e566d10f4a5447317a66d64c7459954b9
A great source of [examples][] can be found in the tests for this API.
[examples]: https://github.com/ipfs/js-ipfs/blob/master/packages/interface-ipfs-core/src/dht
-[peerid]: https://www.npmjs.com/package/peer-id
-[cid]: https://www.npmjs.com/package/cids
+[peerid]: https://docs.libp2p.io/concepts/peer-id/
+[cid]: https://docs.ipfs.io/concepts/content-addressing
[AbortSignal]: https://developer.mozilla.org/en-US/docs/Web/API/AbortSignal
diff --git a/docs/core-api/FILES.md b/docs/core-api/FILES.md
index 2c6ad68622..9828c324f3 100644
--- a/docs/core-api/FILES.md
+++ b/docs/core-api/FILES.md
@@ -204,7 +204,7 @@ const file = {
content: 'ABC'
}
-const result = await ipfs.add(content)
+const result = await ipfs.add(file)
console.info(result)
@@ -334,10 +334,9 @@ See the [multihash](https://github.com/multiformats/js-multihash/blob/master/src
Both js-ipfs and js-ipfs-http-client export a utility to make importing files from the file system easier (Note: it not available in the browser).
```js
-const IPFS = require('ipfs')
-const { globSource } = IPFS
+import { create, globSource } from 'ipfs'
-const ipfs = await IPFS.create()
+const ipfs = await create()
//options specific to globSource
const globSourceOptions = {
@@ -375,10 +374,9 @@ for await (const file of ipfs.addAll(globSource('./docs', globSourceOptions), ad
Both js-ipfs and js-ipfs-http-client export a utility to make importing a file from a URL easier.
```js
-const IPFS = require('ipfs')
-const { urlSource } = IPFS
+import { create, urlSource } from 'ipfs'
-const ipfs = await IPFS.create()
+const ipfs = await create()
const file = await ipfs.add(urlSource('https://ipfs.io/images/ipfs-logo.svg'))
console.log(file)
@@ -447,6 +445,9 @@ An optional object which may have the following keys:
| Name | Type | Default | Description |
| ---- | ---- | ------- | ----------- |
+| archive | `boolean` | `undefined` | Return the file/directory in a tarball |
+| compress | `boolean` | `false` | Gzip the returned stream |
+| compressionLevel | `Number` | `undefined` | How much compression to apply (1-9) |
| timeout | `Number` | `undefined` | A timeout in ms |
| signal | [AbortSignal][] | `undefined` | Can be used to cancel any long running requests started as a result of this call |
@@ -454,46 +455,29 @@ An optional object which may have the following keys:
| Type | Description |
| -------- | -------- |
-| `AsyncIterable` | An async iterable that yields objects representing the files |
+| `AsyncIterable` | An async iterable that yields bytes |
-Each yielded object is of the form:
+What is streamed as a response depends on the options passed and what the `ipfsPath` resolves to.
-```js
-{
- type: string, // 'file' or 'dir'
- path: string, // a deeply nested path within the directory structure
- content?: >, // only present if `type` is 'file'
- mode: Number, // implicit if not provided - 0644 for files, 0755 for directories
- mtime?: { secs: Number, nsecs: Number }
-}
-```
-
-Here, each `path` corresponds to the name of a file, and `content` is an async iterable with the file contents.
+1. If `ipfsPath` resolves to a file:
+ * By default you will get a tarball containing the file
+ * Pass `compress: true` (and an optional `compressionLevel`) to instead get the gzipped file contents
+ * Pass `compress: true` (and an optional `compressionLevel`) AND `archive: true` to get a gzipped tarball containing the file
+2. If `ipfsPath` resolves to a directory:
+ * By default you will get a tarball containing the contents of the directory
+ * Passing `compress: true` will cause an error
+ * Pass `compress: true` (and an optional `compressionLevel`) AND `archive: true` to get a gzipped tarball containing the contents of the directory
#### Example
```JavaScript
const cid = 'QmQ2r6iMNpky5f1m4cnm3Yqw8VSvjuKpTcK1X7dBR1LkJF'
-for await (const file of ipfs.get(cid)) {
- console.log(file.type, file.path)
-
- if (!file.content) continue;
-
- const content = []
-
- for await (const chunk of file.content) {
- content.push(chunk)
- }
-
- console.log(content)
+for await (const buf of ipfs.get(cid)) {
+ // do something with buf
}
```
-When invoking this method via the HTTP API client, the response arrives as a stream containing either the entire contents of the file (if the passed [CID][] resolves to a file) or recursive directory tree and all files contained therein (if the passed [CID][] resolves to a directory).
-
-If you are iterating over a directory, in order to proceed to the next entry in the stream, you must consume the `content` field of the current entry if it is present.
-
A great source of [examples](https://github.com/ipfs/js-ipfs/blob/master/packages/interface-ipfs-core/src/get.js) can be found in the tests for this API.
### `ipfs.ls(ipfsPath)`
@@ -1040,7 +1024,7 @@ for await (const file of ipfs.files.ls('/screenshots')) {
[b]: https://www.npmjs.com/package/buffer
[file]: https://developer.mozilla.org/en-US/docs/Web/API/File
-[cid]: https://www.npmjs.com/package/cids
+[cid]: https://docs.ipfs.io/concepts/content-addressing
[blob]: https://developer.mozilla.org/en-US/docs/Web/API/Blob
[IPFS Path]: https://www.npmjs.com/package/is-ipfs#isipfspathpath
[MFS Path]: https://docs.ipfs.io/guides/concepts/mfs/
diff --git a/docs/core-api/KEY.md b/docs/core-api/KEY.md
index 6d2d5da60b..8a91e2fcaa 100644
--- a/docs/core-api/KEY.md
+++ b/docs/core-api/KEY.md
@@ -278,7 +278,7 @@ An optional object which may have the following keys:
### Example
```JavaScript
-const key = await ipfs.key.import('clone', 'password')
+const key = await ipfs.key.import('clone', pem, 'password')
console.log(key)
// { id: 'QmQRiays958UM7norGRQUG3tmrLq8pJdmJarwYSk2eLthQ',
@@ -288,5 +288,5 @@ console.log(key)
A great source of [examples][] can be found in the tests for this API.
[examples]: https://github.com/ipfs/js-ipfs/blob/master/packages/interface-ipfs-core/src/key
-[cid]: https://www.npmjs.com/package/cids
+[cid]: https://docs.ipfs.io/concepts/content-addressing
[AbortSignal]: https://developer.mozilla.org/en-US/docs/Web/API/AbortSignal
diff --git a/docs/core-api/MISCELLANEOUS.md b/docs/core-api/MISCELLANEOUS.md
index 61b74fab61..93055266ad 100644
--- a/docs/core-api/MISCELLANEOUS.md
+++ b/docs/core-api/MISCELLANEOUS.md
@@ -300,5 +300,5 @@ A great source of [examples](https://github.com/ipfs/js-ipfs/blob/master/package
[examples]: https://github.com/ipfs/js-ipfs/blob/master/packages/interface-ipfs-core/src/miscellaneous
[rs]: https://www.npmjs.com/package/readable-stream
[ps]: https://www.npmjs.com/package/pull-stream
-[cid]: https://www.npmjs.com/package/cids
+[cid]: https://docs.ipfs.io/concepts/content-addressing
[AbortSignal]: https://developer.mozilla.org/en-US/docs/Web/API/AbortSignal
diff --git a/docs/core-api/NAME.md b/docs/core-api/NAME.md
index 5069d45f24..e7126b15e2 100644
--- a/docs/core-api/NAME.md
+++ b/docs/core-api/NAME.md
@@ -226,7 +226,7 @@ A great source of [examples][examples-pubsub] can be found in the tests for this
| Name | Type | Description |
| ---- | ---- | ----------- |
-| value | `String` | An IPNS address such as `/ipns/ipfs.io` |
+| value | `PeerId` or `string` | An IPNS address such as `/ipns/ipfs.io` |
### Options
@@ -261,5 +261,5 @@ A great source of [examples][] can be found in the tests for this API.
[examples]: https://github.com/ipfs/js-ipfs/blob/master/packages/interface-ipfs-core/src/name
[examples-pubsub]: https://github.com/ipfs/js-ipfs/blob/master/packages/interface-ipfs-core/src/name-pubsub
-[cid]: https://www.npmjs.com/package/cids
+[cid]: https://docs.ipfs.io/concepts/content-addressing
[AbortSignal]: https://developer.mozilla.org/en-US/docs/Web/API/AbortSignal
diff --git a/docs/core-api/OBJECT.md b/docs/core-api/OBJECT.md
index 9382abcb33..bc48225f91 100644
--- a/docs/core-api/OBJECT.md
+++ b/docs/core-api/OBJECT.md
@@ -1,5 +1,7 @@
# Object API
+> ⚠️ Object API is [deprecated](https://github.com/ipfs/go-ipfs/issues/7936), use [FILES](FILES.md) and [DAG](DAG.md) APIs instead.
+
- [`ipfs.object.new([options])`](#ipfsobjectnewoptions)
- [Parameters](#parameters)
- [Options](#options)
@@ -343,7 +345,7 @@ An optional object which may have the following keys:
const cid = await ipfs.object.patch.addLink(node, {
name: 'some-link',
size: 10,
- cid: new CID('QmPTkMuuL6PD8L2SwTwbcs1NPg14U8mRzerB1ZrrBrkSDD')
+ cid: CID.parse('QmPTkMuuL6PD8L2SwTwbcs1NPg14U8mRzerB1ZrrBrkSDD')
})
```
@@ -357,7 +359,7 @@ The `DAGLink` to be added can also be passed as an object containing: `name`, `c
const link = {
name: 'Qmef7ScwzJUCg1zUSrCmPAz45m8uP5jU7SLgt2EffjBmbL',
size: 37,
- cid: new CID('Qmef7ScwzJUCg1zUSrCmPAz45m8uP5jU7SLgt2EffjBmbL')
+ cid: CID.parse('Qmef7ScwzJUCg1zUSrCmPAz45m8uP5jU7SLgt2EffjBmbL')
};
```
@@ -398,9 +400,9 @@ An optional object which may have the following keys:
```JavaScript
// cid is CID of the DAG node created by removing a link
const cid = await ipfs.object.patch.rmLink(node, {
- name: 'some-link',
- size: 10,
- cid: new CID('QmPTkMuuL6PD8L2SwTwbcs1NPg14U8mRzerB1ZrrBrkSDD')
+ Name: 'some-link',
+ Tsize: 10,
+ Hash: CID.parse('QmPTkMuuL6PD8L2SwTwbcs1NPg14U8mRzerB1ZrrBrkSDD')
})
```
diff --git a/docs/core-api/PIN.md b/docs/core-api/PIN.md
index 54a25e3df4..7c6723d24e 100644
--- a/docs/core-api/PIN.md
+++ b/docs/core-api/PIN.md
@@ -81,12 +81,12 @@ An optional object which may have the following keys:
| Type | Description |
| -------- | -------- |
-| [CID][] | The CIDs that was pinned |
+| [CID][] | The CID that was pinned |
### Example
```JavaScript
-const cid of ipfs.pin.add(new CID('QmWATWQ7fVPP2EFGu71UkfnqhYXDYH566qy47CnJDgvs8u'))
+const cid of ipfs.pin.add(CID.parse('QmWATWQ7fVPP2EFGu71UkfnqhYXDYH566qy47CnJDgvs8u'))
console.log(cid)
// Logs:
// CID('QmWATWQ7fVPP2EFGu71UkfnqhYXDYH566qy47CnJDgvs8u')
@@ -130,7 +130,7 @@ Each yielded object has the form:
### Example
```JavaScript
-for await (const cid of ipfs.pin.addAll(new CID('QmWATWQ7fVPP2EFGu71UkfnqhYXDYH566qy47CnJDgvs8u'))) {
+for await (const cid of ipfs.pin.addAll(CID.parse('QmWATWQ7fVPP2EFGu71UkfnqhYXDYH566qy47CnJDgvs8u'))) {
console.log(cid)
}
// Logs:
@@ -178,7 +178,7 @@ for await (const { cid, type } of ipfs.pin.ls()) {
```JavaScript
for await (const { cid, type } of ipfs.pin.ls({
- paths: [ new CID('Qmc5..'), new CID('QmZb..'), new CID('QmSo..') ]
+ paths: [ CID.parse('Qmc5..'), CID.parse('QmZb..'), CID.parse('QmSo..') ]
})) {
console.log({ cid, type })
}
@@ -218,7 +218,7 @@ An optional object which may have the following keys:
### Example
```JavaScript
-const cid of ipfs.pin.rm(new CID('QmWATWQ7fVPP2EFGu71UkfnqhYXDYH566qy47CnJDgvs8u'))
+const cid of ipfs.pin.rm(CID.parse('QmWATWQ7fVPP2EFGu71UkfnqhYXDYH566qy47CnJDgvs8u'))
console.log(cid)
// prints the CID that was unpinned
// CID('QmWATWQ7fVPP2EFGu71UkfnqhYXDYH566qy47CnJDgvs8u')
@@ -254,7 +254,7 @@ An optional object which may have the following keys:
### Example
```JavaScript
-for await (const cid of ipfs.pin.rmAll(new CID('QmWATWQ7fVPP2EFGu71UkfnqhYXDYH566qy47CnJDgvs8u'))) {
+for await (const cid of ipfs.pin.rmAll(CID.parse('QmWATWQ7fVPP2EFGu71UkfnqhYXDYH566qy47CnJDgvs8u'))) {
console.log(cid)
}
// prints the CIDs that were unpinned
@@ -295,13 +295,13 @@ An object may have the following optional fields:
| Type | Description |
| ---- | -------- |
-| Promise | Resolves if added succesfully, or fails with error e.g. if service with such name is already registered |
+| Promise | Resolves if added successfully, or fails with error e.g. if service with such name is already registered |
### Example
```JavaScript
-await ipfs.pin.remote.sevice.add('pinata', {
+await ipfs.pin.remote.service.add('pinata', {
endpoint: new URL('https://api.pinata.cloud'),
key: 'your-pinata-key'
})
@@ -320,7 +320,7 @@ An object may have the following optional fields:
| Name | Type | Default | Description |
| ---- | ---- | ------- | ----------- |
-| stat | `boolean` | `false` | If `true` will include service stats. |
+| stat | `boolean` | `false` | If `true` will include service stats. |
| timeout | `number` | `undefined` | A timeout in ms |
| signal | [AbortSignal][] | `undefined` | Can be used to cancel any long running requests started as a result of this call |
@@ -349,7 +349,7 @@ If stats could not be fetched from service (e.g. endpoint was unreachable) objec
| status | `'invalid'` | Service status |
-If stats were fetched from service succesfully object has following form:
+If stats were fetched from service successfully object has following form:
| Name | Type | Description |
| ---- | ---- | -------- |
@@ -372,7 +372,7 @@ Object has following fields:
### Example
```JavaScript
-await ipfs.pin.remote.sevice.ls()
+await ipfs.pin.remote.service.ls()
// [{
// service: 'pinata'
// endpoint: new URL('https://api.pinata.cloud'),
@@ -426,7 +426,7 @@ An object may have the following optional fields:
### Example
```JavaScript
-await ipfs.pin.remote.sevice.rm('pinata')
+await ipfs.pin.remote.service.rm('pinata')
```
A great source of [examples][] can be found in the tests for this API.
@@ -486,7 +486,7 @@ Status is one of the following string values:
### Example
```JavaScript
-const cid = new CID('QmWATWQ7fVPP2EFGu71UkfnqhYXDYH566qy47CnJDgvs8u')
+const cid = CID.parse('QmWATWQ7fVPP2EFGu71UkfnqhYXDYH566qy47CnJDgvs8u')
const pin = await ipfs.pin.remote.add(cid, {
service: 'pinata',
name: 'block-party'
@@ -529,21 +529,20 @@ An object may have the following optional fields:
| Type | Description |
| ---- | -------- |
-| AyncIterable<[Pin][]> | Pin Objects |
+| AysncIterable<[Pin][]> | Pin Objects |
### Example
```JavaScript
-const pins = await ipfs.pin.remote.ls({
- service: 'pinata'
-})
-console.log(pins)
+for await (const pin of ipfs.pin.remote.ls({ service: 'pinata' })) {
+ console.log(pin)
+}
// Logs:
-// [{
+// {
// status: 'pinned',
// cid: CID('QmWATWQ7fVPP2EFGu71UkfnqhYXDYH566qy47CnJDgvs8u'),
// name: 'block-party'
-// }]
+// }
```
A great source of [examples][] can be found in the tests for this API.
@@ -635,5 +634,5 @@ A great source of [examples][] can be found in the tests for this API.
[Stat]: #stat
[PinCount]: #pincount
[examples]: https://github.com/ipfs/js-ipfs/blob/master/packages/interface-ipfs-core/src/pin
-[cid]: https://www.npmjs.com/package/cids
+[cid]: https://docs.ipfs.io/concepts/content-addressing
[AbortSignal]: https://developer.mozilla.org/en-US/docs/Web/API/AbortSignal
diff --git a/docs/core-api/PUBSUB.md b/docs/core-api/PUBSUB.md
index 4778181e6b..3a9674fd0b 100644
--- a/docs/core-api/PUBSUB.md
+++ b/docs/core-api/PUBSUB.md
@@ -32,7 +32,7 @@
| Name | Type | Description |
| ---- | ---- | ----------- |
| topic | `String` | The topic name |
-| handler | `Function<(msg) => {}>` | Event handler which will be called with a message object everytime one is received. The `msg` has the format `{from: String, seqno: Uint8Array, data: Uint8Array, topicIDs: Array}` |
+| handler | `Function<(msg) => {}>` | Event handler which will be called with a message object everytime one is received. The `msg` has the format `{from: PeerId, sequenceNumber: bigint, data: Uint8Array, topicIDs: Array}` |
### Options
@@ -53,7 +53,7 @@ An optional object which may have the following keys:
```JavaScript
const topic = 'fruit-of-the-day'
-const receiveMsg = (msg) => console.log(msg.data.toString())
+const receiveMsg = (msg) => console.log(new TextDecoder().decode(msg.data))
await ipfs.pubsub.subscribe(topic, receiveMsg)
console.log(`subscribed to ${topic}`)
@@ -203,4 +203,4 @@ console.log(peerIds)
A great source of [examples][] can be found in the tests for this API.
[examples]: https://github.com/ipfs/js-ipfs/blob/master/packages/interface-ipfs-core/src/pubsub
-[AbortSignal]: https://developer.mozilla.org/en-US/docs/Web/API/AbortSignal
\ No newline at end of file
+[AbortSignal]: https://developer.mozilla.org/en-US/docs/Web/API/AbortSignal
diff --git a/docs/core-api/README.md b/docs/core-api/README.md
index 0578a9eef7..6b058fb8c7 100644
--- a/docs/core-api/README.md
+++ b/docs/core-api/README.md
@@ -1,6 +1,11 @@
# IPFS Core API
-This directory contains the description of the core IPFS API. In order to be considered "valid", an IPFS core implementation must expose the API described here. You can also use this loose spec as documentation for consuming the core APIs.
+This directory contains the description of the core JS IPFS API. In order to be considered "valid", a JS IPFS core implementation must expose the API described here.
+This abstraction allows for different implementations including:
+1. Full JavaScript native implementation
+2. Delgate implementation that invokes another IPFS implementation (e.g., Kubo)
+
+You can use this loose spec as documentation for consuming the core APIs.
It is broken up into the following sections:
@@ -14,10 +19,13 @@ It is broken up into the following sections:
* [KEY.md](KEY.md)
* [MISCELLANEOUS.md](MISCELLANEOUS.md)
* [NAME.md](NAME.md)
-* [OBJECT.md](OBJECT.md)
+* [OBJECT.md](OBJECT.md) ([deprecated](https://github.com/ipfs/go-ipfs/issues/7936), use the [DAG API](DAG.md) instead)
* [PIN.md](PIN.md)
* [PUBSUB.md](PUBSUB.md)
* [REFS.md](REFS.md)
* [REPO.md](REPO.md)
* [STATS.md](STATS.md)
* [SWARM.md](SWARM.md)
+
+## History
+This API was created based off the [Kubo RPC HTTP API](https://docs.ipfs.io/reference/kubo/rpc/). There is no guarantee they stay fully in sync.
diff --git a/docs/core-api/REFS.md b/docs/core-api/REFS.md
index 8a302fece3..5168998a96 100644
--- a/docs/core-api/REFS.md
+++ b/docs/core-api/REFS.md
@@ -112,6 +112,6 @@ for await (const ref of ipfs.refs.local()) {
[examples]: https://github.com/ipfs/js-ipfs/blob/master/packages/interface-ipfs-core/src/files-regular
[b]: https://www.npmjs.com/package/buffer
-[cid]: https://www.npmjs.com/package/cids
+[cid]: https://docs.ipfs.io/concepts/content-addressing
[blob]: https://developer.mozilla.org/en-US/docs/Web/API/Blob
[AbortSignal]: https://developer.mozilla.org/en-US/docs/Web/API/AbortSignal
diff --git a/docs/core-api/REPO.md b/docs/core-api/REPO.md
index 834599a289..432ceae43b 100644
--- a/docs/core-api/REPO.md
+++ b/docs/core-api/REPO.md
@@ -136,5 +136,5 @@ console.log(version)
```
[1]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/BigInt
-[cid]: https://www.npmjs.com/package/cids
+[cid]: https://docs.ipfs.io/concepts/content-addressing
[AbortSignal]: https://developer.mozilla.org/en-US/docs/Web/API/AbortSignal
diff --git a/docs/core-api/STATS.md b/docs/core-api/STATS.md
index bc661c069b..da2de54e01 100644
--- a/docs/core-api/STATS.md
+++ b/docs/core-api/STATS.md
@@ -34,7 +34,7 @@ An optional object which may have the following keys:
| Name | Type | Default | Description |
| ---- | ---- | ------- | ----------- |
-| peer | [PeerId][], [CID][] or `String` | `undefined` | Specifies a peer to print bandwidth for |
+| peer | [PeerId][] | `undefined` | Specifies a peer to print bandwidth for |
| proto | `String` | `undefined` | Specifies a protocol to print bandwidth for |
| poll | `boolean` | `undefined` | Is used to yield bandwidth info at an interval |
| interval | `Number` | `undefined` | The time interval to wait between updating output, if `poll` is `true` |
@@ -51,8 +51,8 @@ Each yielded object contains the following keys:
- `totalIn` - is a [BigInt][bigNumber], in bytes.
- `totalOut` - is a [BigInt][bigNumber], in bytes.
-- `rateIn` - is a [BigInt][bigNumber], in bytes.
-- `rateOut` - is a [BigInt][bigNumber], in bytes.
+- `rateIn` - is a `float`, in bytes.
+- `rateOut` - is a `float`, in bytes.
### Example
@@ -62,8 +62,8 @@ for await (const stats of ipfs.stats.bw()) {
}
// { totalIn: BigInt {...},
// totalOut: BigInt {...},
-// rateIn: BigInt {...},
-// rateOut: BigInt {...} }
+// rateIn: number {...},
+// rateOut: number {...} }
```
A great source of [examples][] can be found in the tests for this API.
@@ -71,5 +71,5 @@ A great source of [examples][] can be found in the tests for this API.
[bigNumber]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/BigInt
[examples]: https://github.com/ipfs/js-ipfs/blob/master/packages/interface-ipfs-core/src/stats
[AbortSignal]: https://developer.mozilla.org/en-US/docs/Web/API/AbortSignal
-[cid]: https://www.npmjs.com/package/cids
-[peerid]: https://www.npmjs.com/package/peer-id
+[cid]: https://docs.ipfs.io/concepts/content-addressing
+[peerid]: https://docs.libp2p.io/concepts/peer-id/
diff --git a/docs/core-api/SWARM.md b/docs/core-api/SWARM.md
index c9db832628..60c9b7b2f3 100644
--- a/docs/core-api/SWARM.md
+++ b/docs/core-api/SWARM.md
@@ -83,7 +83,7 @@ A great source of [examples][] can be found in the tests for this API.
| Name | Type | Description |
| ---- | ---- | ----------- |
-| addr | [MultiAddr][] | The object to search for references |
+| addr | [MultiAddr][] or [PeerId][] | The PeerId or Multiaddr to connect to |
### Options
@@ -116,7 +116,7 @@ A great source of [examples][] can be found in the tests for this API.
| Name | Type | Description |
| ---- | ---- | ----------- |
-| addr | [MultiAddr][] | The object to search for references |
+| addr | [MultiAddr][] or [PeerId][] | The PeerId or Multiaddr to disconnect from |
### Options
@@ -228,3 +228,4 @@ A great source of [examples][] can be found in the tests for this API.
[examples]: https://github.com/ipfs/js-ipfs/blob/master/packages/interface-ipfs-core/src/swarm
[AbortSignal]: https://developer.mozilla.org/en-US/docs/Web/API/AbortSignal
[MultiAddr]: https://github.com/multiformats/js-multiaddr
+[peerid]: https://docs.libp2p.io/concepts/peer-id/
diff --git a/docs/upgrading/v0.62-v0.63.md b/docs/upgrading/v0.62-v0.63.md
new file mode 100644
index 0000000000..ed3dcb1c8e
--- /dev/null
+++ b/docs/upgrading/v0.62-v0.63.md
@@ -0,0 +1,167 @@
+
+# Migrating to ipfs@0.63 and ipfs-core@0.15
+
+> A migration guide for refactoring your application code from `ipfs@0.62.x` to `ipfs@0.63.x`
+
+## Table of Contents
+
+- [ESM](#esm)
+ - [TypeScript and ESM](#typescript-and-esm)
+- [`libp2p@0.37.x`](#libp2p037x)
+- [PeerIds](#peerids)
+- [multiaddrs](#multiaddrs)
+
+## ESM
+
+The biggest change to `ipfs@0.63.x` is that the module is now [ESM-only](https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c).
+
+ESM is the module system for JavaScript. It allows us to structure our code in separate files without polluting a global namespace.
+
+Other systems have tried to fill this gap, notably CommonJS, AMD, RequireJS and others, but ESM is [the official standard format](https://tc39.es/ecma262/#sec-modules) to package JavaScript code for reuse.
+
+If you see errors similar to `Error [ERR_PACKAGE_PATH_NOT_EXPORTED]: No "exports" main defined in node_modules/ipfs/package.json` you are likely trying to load ESM code from a CJS environment via `require`. This is not possible, instead it must be loaded using `import`.
+
+If your application is not yet ESM or you are not ready to port it to ESM, you can use the [dynamic `import` function](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/import) to load `ipfs` at runtime from a CJS module:
+
+```js
+async function loadIpfs () {
+ const { create } = await import('ipfs-core')
+
+ const node = await create({
+ // ... config here
+ })
+
+ return node
+}
+```
+
+### TypeScript and ESM
+
+When authoring typescript it can often look like you are writing ESM:
+
+```ts
+import { create } from 'ipfs-core'
+
+create()
+```
+
+When this is transpiled to JavaScript the default settings will emit CJS which will fail at runtime:
+
+```js
+"use strict";
+exports.__esModule = true;
+var ipfs_core_1 = require("ipfs-core");
+(0, ipfs_core_1.create)();
+```
+
+You may also see errors about private identifiers:
+
+```console
+node_modules/@libp2p/interfaces/dist/src/events.d.ts:19:5 - error TS18028: Private identifiers are only available when targeting ECMAScript 2015 and higher.
+
+19 #private;
+ ~~~~~~~~
+```
+
+To build correctly with ESM as a target, update your `tsconfig.json` to include the following:
+
+```js
+{
+ "module": "es2020", // ensures output is ESM
+ "target": "es2020", // support modern features like private identifiers
+ // other settings
+}
+```
+
+They must both be set to `es2020` at least, more recent versions will also work.
+
+If in doubt, examine the JavaScript files `tsc` emits and ensure that any `ipfs` modules are being loaded with `import` and not `require`.
+
+## `libp2p@0.37.x`
+
+`ipfs@0.63.x` upgrades to `libp2p@0.37.x`. This is a significant refactor that ports the entire stack to TypeScript and publishes all modules as ESM-only code.
+
+Please see the [libp2p 0.37.x upgrade guide](https://github.com/libp2p/js-libp2p/blob/master/doc/migrations/v0.36-v0.37.md) for how this may affect your application.
+
+## PeerIds
+
+The core `libp2p` module and all supporting modules have now been ported to TypeScript in a complete ground-up rewrite. We took this opportunity to solve a few long-standing problems with some of the data types, particularly in how they relate to use in the browser.
+
+One problem we have solved is that the `PeerId` objects used internally expose some cryptographic operations that require heavyweight libraries to be included in browser bundles due to there being no native web-crypto implementation of the algorithms used in those operations.
+
+With `libp2p@0.37.x` those operations have been encapsulated in the `@libp2p/crypto` module which means `PeerId` objects become a lot more lightweight and can now be exposed/accepted as core-api types so we can use them to differentiate between different data types instead of having to treat everything as strings.
+
+The affected methods are:
+
+```js
+// `peerId` must now be a `PeerId`, previously it was a `string`
+ipfs.bitswap.wantlistForPeer(peerId, options)
+
+// Bitswp peers are now returned as `PeerId[]` instead of `string[]`
+ipfs.bitswap.stat(options)
+
+// `peerId` must now be a `PeerId`
+ipfs.dht.findPeer(peerId, options)
+
+// `peerIdOrCid` must now be a `PeerId` or a `CID`, previously it was a `string` or a `CID`
+ipfs.dht.query(peerIdOrCid, options)
+
+// the following DHT events have their `from` field as `PeerId`, previously it was a `string`
+PeerResponseEvent
+ValueEvent
+DialingPeerEvent
+
+// the following DHT events have had their `from` property removed because it is not exposed by go-ipfs so causes incompatibilities
+QueryErrorEvent
+FinalPeerEvent
+
+// the folloing DHT events have had their `to` property removed because it is not exposed by go-ipfs so causes incompatibilities
+SendingQueryEvent
+
+// the `providers` and `closer` properties (where applicable) of the following events have the `peerId` property specified as a `PeerId`, previously it was a `string`
+PeerResponseEvent
+PeerResponseEvent
+
+// `value` can now be a string or a `PeerId`. If a string is passed it will be interpreted as a DNS address.
+ipfs.name.resolve(value, options)
+
+// The return type of this method is now `Promise`, previously it was a `Promise`
+ipfs.pubsub.peers(topic, options)
+
+// `peerId` must now be a `PeerId`, previously it was a `string`
+ipfs.ping(peerId, options)
+
+// the `peer` property of `options` must now be a `PeerId` when specified, previously it was a `string`
+ipfs.stats.bw(options)
+
+// `multiaddrOrPeerId` must be a `Multiaddr` or `PeerId`, previously it was a `Multiaddr` or `string`
+ipfs.swarm.connect(multiaddrOrPeerId, options)
+
+// `multiaddrOrPeerId` must be a `Multiaddr` or `PeerId`, previously it was a `Multiaddr` or `string`
+ipfs.swarm.disconnect(multiaddrOrPeerId, options)
+```
+
+`PeerId`s can be created from strings using the `@libp2p/peer-id` module:
+
+```js
+import { peerIdFromString } from '@libp2p/peer-id'
+
+const peerId = peerIdFromString('Qmfoo')
+```
+
+They can also be created using the `@libp2p/peer-id-factory` module:
+
+```js
+import { createEd25519PeerId } from '@libp2p/peer-id-factory'
+
+const peerId = await createEd25519PeerId()
+```
+
+## multiaddrs
+
+The `multiaddr` module has been ported to TypeScript and is now published as ESM-only.
+
+It has been renamed to `@multiformats/multiaddr` so please update your dependencies and replace usage in your code.
+
+The API otherwise is compatible.
+
diff --git a/docs/upgrading/v0.63-v0.64.md b/docs/upgrading/v0.63-v0.64.md
new file mode 100644
index 0000000000..cc685da864
--- /dev/null
+++ b/docs/upgrading/v0.63-v0.64.md
@@ -0,0 +1,16 @@
+
+# Migrating to ipfs@0.64 and ipfs-core@0.16
+
+> A migration guide for refactoring your application code from `ipfs@0.63.x` to `ipfs@0.64.x`
+
+## Table of Contents
+
+- [libp2p](#libp2p)
+
+## libp2p
+
+The upgrade to `ipfs@0.64.x` incorporates an update to `libp2p@0.38.x` but no API changes.
+
+If your application uses only the default libp2p config there is nothing to do.
+
+If you supply a custom `libp2p` instance to the `ipfs` factory function you should consult the [`libp2p@0.38.x` upgrade guide](https://github.com/libp2p/js-libp2p/blob/master/doc/migrations/v0.37-v0.38.md) for any changes you need to make.
diff --git a/docs/upgrading/v0.64-v0.65.md b/docs/upgrading/v0.64-v0.65.md
new file mode 100644
index 0000000000..b765f0c91b
--- /dev/null
+++ b/docs/upgrading/v0.64-v0.65.md
@@ -0,0 +1,23 @@
+
+# Migrating to ipfs@0.65 and ipfs-core@0.17
+
+> A migration guide for refactoring your application code from `ipfs@0.64.x` to `ipfs@0.65.x`
+
+## Table of Contents
+
+- [libp2p](#libp2p)
+- [multiformats](#multiformats)
+
+## libp2p
+
+The upgrade to `ipfs@0.65.x` incorporates an update to `libp2p@0.40.x` but no API changes.
+
+If your application uses only the default libp2p config there is nothing to do.
+
+If you supply a custom `libp2p` instance to the `ipfs` factory function you should consult the [`libp2p@0.40.x` upgrade guide](https://github.com/libp2p/js-libp2p/blob/master/doc/migrations/v0.39-v0.40.md) for any changes you need to make.
+
+## multiformats
+
+`ipfs@0.65.x` now uses `multiformats@10.x.x`, this means instances of the `CID` class now come from that module and not `multiformats@9.x.x` so any `instanceof` checks your codebase has may break if instances are compare to the class loaded from a different module version.
+
+If your project also has a dependency on the `multiformats` module, it should be updated to `10.x.x` in line with js-ipfs.
diff --git a/examples/browser-add-readable-stream/CHANGELOG.md b/examples/browser-add-readable-stream/CHANGELOG.md
deleted file mode 100644
index f8fa48ba6d..0000000000
--- a/examples/browser-add-readable-stream/CHANGELOG.md
+++ /dev/null
@@ -1,34 +0,0 @@
-# Change Log
-
-All notable changes to this project will be documented in this file.
-See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
-
-## [2.0.1](https://github.com/ipfs/js-ipfs/compare/example-browser-add-readable-stream@2.0.0...example-browser-add-readable-stream@2.0.1) (2020-04-08)
-
-**Note:** Version bump only for package example-browser-add-readable-stream
-
-
-
-
-
-# 2.0.0 (2020-03-31)
-
-
-### Bug Fixes
-
-* examples after files API refactor ([#1740](https://github.com/ipfs/js-ipfs/issues/1740)) ([34ec036](https://github.com/ipfs/js-ipfs/commit/34ec036b0df9563a014c1348f0a056c1f98aadad))
-
-
-### Code Refactoring
-
-* export types and utilities statically ([#1908](https://github.com/ipfs/js-ipfs/issues/1908)) ([79d7fef](https://github.com/ipfs/js-ipfs/commit/79d7fef7d28c0e0405fb69af149ff09681ac4273))
-
-
-### BREAKING CHANGES
-
-* `ipfs.util.isIPFS` and `ipfs.util.crypto` have moved to static exports and should be accessed via `const { isIPFS, crypto } = require('ipfs')`.
-
-The modules available under `ipfs.types.*` have also become static exports.
-
-License: MIT
-Signed-off-by: Alan Shaw
diff --git a/examples/browser-add-readable-stream/README.md b/examples/browser-add-readable-stream/README.md
deleted file mode 100644
index d2293d1bf7..0000000000
--- a/examples/browser-add-readable-stream/README.md
+++ /dev/null
@@ -1,20 +0,0 @@
-# Using duplex streams to add files to IPFS in the browser
-
-If you have a number of files that you'd like to add to IPFS and end up with a hash representing the directory containing your files, you can invoke [`ipfs.add`](https://github.com/ipfs/js-ipfs/blob/master/packages/interface-ipfs-core/SPEC/FILES.md#add) with an array of objects.
-
-But what if you don't know how many there will be in advance? You can add multiple files to a directory in IPFS over time by using [`ipfs.addReadableStream`](https://github.com/ipfs/js-ipfs/blob/master/packages/interface-ipfs-core/SPEC/FILES.md#addreadablestream).
-
-## Before you start
-
-First clone this repo, install dependencies in the project root and build the project.
-
-```console
-$ git clone https://github.com/ipfs/js-ipfs.git
-$ cd js-ipfs
-$ npm install
-$ npm run build
-```
-
-## Running the example
-
-See [`index.js`](./index.js) for a working example and open [`index.html`](./index.html) in your browser to see it run.
diff --git a/examples/browser-add-readable-stream/index.html b/examples/browser-add-readable-stream/index.html
deleted file mode 100644
index 3b5d853e6d..0000000000
--- a/examples/browser-add-readable-stream/index.html
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
- Add readable stream
-
-
-
-
-
-
-
diff --git a/examples/browser-add-readable-stream/index.js b/examples/browser-add-readable-stream/index.js
deleted file mode 100644
index 4c870f2193..0000000000
--- a/examples/browser-add-readable-stream/index.js
+++ /dev/null
@@ -1,69 +0,0 @@
-'use strict'
-
-/* global Ipfs */
-/* eslint-env browser */
-
-const main = async () => {
- const repoPath = `ipfs-${Math.random()}`
- const ipfs = await Ipfs.create({ repo: repoPath })
-
- const directoryName = 'directory'
-
- // Our list of files
- const inputFiles = createFiles(directoryName)
-
- const directoryHash = await streamFiles(ipfs, directoryName, inputFiles)
-
- const fileList = await ipfs.ls(directoryHash)
-
- log(`\n--\n\nDirectory contents:\n\n${directoryName}/ ${directoryHash}`)
-
- fileList.forEach((file, index) => {
- log(` ${index < fileList.length - 1 ? '\u251C' : '\u2514'}\u2500 ${file.name} ${file.path} ${file.hash}`)
- })
-}
-
-const createFiles = (directory) => {
- return [{
- path: `${directory}/file1.txt`,
-
- // content could be a stream, a url, a Uint8Array, a File etc
- content: 'one'
- }, {
- path: `${directory}/file2.txt`,
- content: 'two'
- }, {
- path: `${directory}/file3.txt`,
- content: 'three'
- }]
-}
-
-const streamFiles = async (ipfs, directory, files) => {
- // Create a stream to write files to
- const stream = new ReadableStream({
- start(controller) {
- for (let i = 0; i < files.length; i++) {
- // Add the files one by one
- controller.enqueue(files[i])
- }
-
- // When we have no more files to add, close the stream
- controller.close()
- }
- })
-
- const data = await ipfs.add(stream)
-
- log(`Added ${data.path} hash: ${data.hash}`)
-
- // The last data event will contain the directory hash
- if (data.path === directory) {
- return data.cid
- }
-}
-
-const log = (line) => {
- document.getElementById('output').appendChild(document.createTextNode(`${line}\r\n`))
-}
-
-main()
diff --git a/examples/browser-add-readable-stream/package.json b/examples/browser-add-readable-stream/package.json
deleted file mode 100644
index dc130f6773..0000000000
--- a/examples/browser-add-readable-stream/package.json
+++ /dev/null
@@ -1,18 +0,0 @@
-{
- "name": "example-browser-add-readable-stream",
- "description": "How to add readable streams in the browser",
- "version": "2.0.1",
- "main": "index.js",
- "private": true,
- "scripts": {
- "serve": "http-server public -a 127.0.0.1 -p 8888",
- "start": "npm run serve",
- "test": "test-ipfs-example"
- },
- "keywords": [],
- "license": "MIT",
- "devDependencies": {
- "ipfs": "^0.55.3",
- "test-ipfs-example": "^3.0.0"
- }
-}
diff --git a/examples/browser-add-readable-stream/test.js b/examples/browser-add-readable-stream/test.js
deleted file mode 100644
index 87f76119ca..0000000000
--- a/examples/browser-add-readable-stream/test.js
+++ /dev/null
@@ -1,13 +0,0 @@
-'use strict'
-
-module.exports = {
- 'Add readable stream example': function (browser) {
- browser
- .url(process.env.IPFS_EXAMPLE_TEST_URL)
- .waitForElementVisible('#output')
-
- browser.expect.element('#output').text.to.contain('directory/ QmVgJePRxp1vhRxDcJWdmuFGfUB5S5RYTtG1NR3bQM4BBn')
-
- browser.end()
- }
-}
diff --git a/examples/browser-browserify/CHANGELOG.md b/examples/browser-browserify/CHANGELOG.md
deleted file mode 100644
index fcbaf2c030..0000000000
--- a/examples/browser-browserify/CHANGELOG.md
+++ /dev/null
@@ -1,24 +0,0 @@
-# Change Log
-
-All notable changes to this project will be documented in this file.
-See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
-
-## [1.1.1](https://github.com/ipfs/js-ipfs/compare/example-browser-browserify@1.1.0...example-browser-browserify@1.1.1) (2020-04-08)
-
-**Note:** Version bump only for package example-browser-browserify
-
-
-
-
-
-# 1.1.0 (2020-03-31)
-
-
-### Bug Fixes
-
-* examples after files API refactor ([#1740](https://github.com/ipfs/js-ipfs/issues/1740)) ([34ec036](https://github.com/ipfs/js-ipfs/commit/34ec036b0df9563a014c1348f0a056c1f98aadad))
-
-
-### Features
-
-* implementing the new streaming interfaces ([#1086](https://github.com/ipfs/js-ipfs/issues/1086)) ([2c4b8b3](https://github.com/ipfs/js-ipfs/commit/2c4b8b325b94d4506b87441f06c5d29bb6f37f72))
diff --git a/examples/browser-browserify/README.md b/examples/browser-browserify/README.md
deleted file mode 100644
index 532125fd28..0000000000
--- a/examples/browser-browserify/README.md
+++ /dev/null
@@ -1,19 +0,0 @@
-# Bundle js-ipfs with Browserify!
-
-In this example, you will find a boilerplate you can use to guide yourself into bundling js-ipfs with [browserify](http://browserify.org/), so that you can use it in your own web app!
-
-## Clone repo and run the example
-
-```bash
-> git clone https://github.com/ipfs/js-ipfs.git
-> cd js-ipfs/examples/browser-browserify
-> npm install
-> npm start
-```
-
-Now open your browser at `http://localhost:8888`
-
-You should see the following:
-
-
-
diff --git a/examples/browser-browserify/img/1.png b/examples/browser-browserify/img/1.png
deleted file mode 100644
index 580511dad7..0000000000
Binary files a/examples/browser-browserify/img/1.png and /dev/null differ
diff --git a/examples/browser-browserify/img/2.png b/examples/browser-browserify/img/2.png
deleted file mode 100644
index 5c72fc0a38..0000000000
Binary files a/examples/browser-browserify/img/2.png and /dev/null differ
diff --git a/examples/browser-browserify/package.json b/examples/browser-browserify/package.json
deleted file mode 100644
index 378a8f8a14..0000000000
--- a/examples/browser-browserify/package.json
+++ /dev/null
@@ -1,25 +0,0 @@
-{
- "name": "example-browser-browserify",
- "description": "Bundle js-ipfs with Browserify",
- "version": "1.1.1",
- "main": "index.js",
- "private": true,
- "scripts": {
- "bundle": "browserify src/index.js > public/bundle.js",
- "serve": "http-server public -a 127.0.0.1 -p 8888",
- "start": "npm run bundle && npm run serve",
- "clean": "rimraf public/bundle.js",
- "test": "test-ipfs-example"
- },
- "keywords": [],
- "license": "MIT",
- "devDependencies": {
- "browserify": "^17.0.0",
- "concat-stream": "^2.0.0",
- "execa": "^5.0.0",
- "http-server": "^0.12.3",
- "ipfs": "^0.55.3",
- "rimraf": "^3.0.2",
- "test-ipfs-example": "^3.0.0"
- }
-}
diff --git a/examples/browser-browserify/public/index.html b/examples/browser-browserify/public/index.html
deleted file mode 100644
index 8d00381454..0000000000
--- a/examples/browser-browserify/public/index.html
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
- js-ipfs example
-
-
-
-
- JS IPFS - Add data to IPFS from the browser
-
- Add text to ipfs
-
-
found in ipfs:
-
[ipfs cid]
-
[ipfs content]
-
-
-
diff --git a/examples/browser-browserify/src/index.js b/examples/browser-browserify/src/index.js
deleted file mode 100644
index c99eb77391..0000000000
--- a/examples/browser-browserify/src/index.js
+++ /dev/null
@@ -1,35 +0,0 @@
-'use strict'
-
-const IPFS = require('ipfs')
-
-document.addEventListener('DOMContentLoaded', async () => {
- const node = await IPFS.create({
- repo: String(Math.random() + Date.now()),
- init: { alogorithm: 'ed25519' }
-
- })
- const button = document.getElementById('store')
-
- console.log('IPFS node is ready')
-
- async function store () {
- const toStore = document.getElementById('source').value
-
- const file = await node.add(toStore)
-
- console.log('successfully stored', file.cid)
-
- await display(file.cid)
- }
-
- async function display (cid) {
- for await (const data of node.cat(cid)) {
- document.getElementById('cid').innerText = cid
- document.getElementById('content').innerText = new TextDecoder().decode(data)
- document.getElementById('output').setAttribute('style', 'display: block')
- }
- }
-
- button.onclick = store
- button.setAttribute('style', 'display: inline')
-})
diff --git a/examples/browser-browserify/test.js b/examples/browser-browserify/test.js
deleted file mode 100644
index 516c302a87..0000000000
--- a/examples/browser-browserify/test.js
+++ /dev/null
@@ -1,20 +0,0 @@
-'use strict'
-
-const pkg = require('./package.json')
-
-module.exports = {
- [pkg.name]: function (browser) {
- browser
- .url(process.env.IPFS_EXAMPLE_TEST_URL)
- .waitForElementVisible('#source')
- .setValue('#source', 'hello')
- .waitForElementVisible('#store')
- .click('#store')
- .waitForElementVisible('#output', 5e3, 100)
-
- browser.expect.element('#cid').text.to.contain('QmWfVY9y3xjsixTgbd9AorQxH7VtMpzfx2HaWtsoUYecaX')
- browser.expect.element('#content').text.to.contain('hello')
-
- browser.end()
- }
-}
diff --git a/examples/browser-create-react-app/.env b/examples/browser-create-react-app/.env
deleted file mode 100644
index 26a83ff0f6..0000000000
--- a/examples/browser-create-react-app/.env
+++ /dev/null
@@ -1,3 +0,0 @@
-# required because react-scripts scans *up* the tree from this project and finds
-# a conflicting version of eslint in the node_modules dir for js-ipfs.
-SKIP_PREFLIGHT_CHECK=true
diff --git a/examples/browser-create-react-app/CHANGELOG.md b/examples/browser-create-react-app/CHANGELOG.md
deleted file mode 100644
index 0a8af510b0..0000000000
--- a/examples/browser-create-react-app/CHANGELOG.md
+++ /dev/null
@@ -1,16 +0,0 @@
-# Change Log
-
-All notable changes to this project will be documented in this file.
-See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
-
-## [0.1.2](https://github.com/ipfs/js-ipfs/compare/example-browser-create-react-app@0.1.1...example-browser-create-react-app@0.1.2) (2020-04-08)
-
-**Note:** Version bump only for package example-browser-create-react-app
-
-
-
-
-
-## 0.1.1 (2020-03-31)
-
-**Note:** Version bump only for package example-browser-create-react-app
diff --git a/examples/browser-create-react-app/README.md b/examples/browser-create-react-app/README.md
deleted file mode 100755
index 1d07fd7fc3..0000000000
--- a/examples/browser-create-react-app/README.md
+++ /dev/null
@@ -1,87 +0,0 @@
-## IPFS React app
-
-A minimal demonstration of how to use js-ipfs in a `create-react-app` generated app.
-
-It boots up a js-ipfs instance via a custom React hook in `./src/hooks/use-ipfs-factory.js`, which is called from `./src/App.js`, which is where the magic happens.
-
-
-
-This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app). **v2.1.3**
-
-## Before you start
-
-First clone this repo, install dependencies in the project root and build the project.
-
-```console
-$ git clone https://github.com/ipfs/js-ipfs.git
-$ cd js-ipfs
-$ npm install
-$ npm run build
-```
-
-## Available Scripts
-
-In the project directory, you can run:
-
-### `npm start`
-
-Runs the app in the development mode.
-Open [http://localhost:3000](http://localhost:3000) to view it in the browser.
-
-The page will reload if you make edits.
-You will also see any lint errors in the console.
-
-### `npm test`
-
-Launches the test runner in the interactive watch mode.
-See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.
-
-### `npm run build`
-
-Builds the app for production to the `build` folder.
-It correctly bundles React in production mode and optimizes the build for the best performance.
-
-The build is minified and the filenames include the hashes.
-Your app is ready to be deployed!
-
-See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.
-
-### `npm run eject`
-
-**Note: this is a one-way operation. Once you `eject`, you can’t go back!**
-
-If you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.
-
-Instead, it will copy all the configuration files and the transitive dependencies (Webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own.
-
-You don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it.
-
-## Learn More
-
-You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).
-
-To learn React, check out the [React documentation](https://reactjs.org/).
-
-### Code Splitting
-
-This section has moved here: https://facebook.github.io/create-react-app/docs/code-splitting
-
-### Analyzing the Bundle Size
-
-This section has moved here: https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size
-
-### Making a Progressive Web App
-
-This section has moved here: https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app
-
-### Advanced Configuration
-
-This section has moved here: https://facebook.github.io/create-react-app/docs/advanced-configuration
-
-### Deployment
-
-This section has moved here: https://facebook.github.io/create-react-app/docs/deployment
-
-### `npm run build` fails to minify
-
-This section has moved here: https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify
diff --git a/examples/browser-create-react-app/package.json b/examples/browser-create-react-app/package.json
deleted file mode 100644
index 50ef611f71..0000000000
--- a/examples/browser-create-react-app/package.json
+++ /dev/null
@@ -1,31 +0,0 @@
-{
- "name": "example-browser-create-react-app",
- "version": "1.0.0",
- "private": true,
- "dependencies": {
- "dot-prop": "^6.0.1",
- "ipfs": "^0.55.3",
- "ipfs-css": "^1.3.0",
- "react": "^17.0.2",
- "react-dom": "^17.0.2",
- "react-scripts": "^4.0.3",
- "tachyons": "^4.11.1"
- },
- "devDependencies": {
- "rimraf": "^3.0.2",
- "test-ipfs-example": "^3.0.0"
- },
- "scripts": {
- "start": "react-scripts start",
- "build": "react-scripts build",
- "eject": "react-scripts eject",
- "test": "test-ipfs-example",
- "clean": "rimraf ./build"
- },
- "eslintConfig": {
- "extends": "react-app"
- },
- "browserslist": [
- "last 2 versions and not dead and > 2%"
- ]
-}
diff --git a/examples/browser-create-react-app/public/favicon.ico b/examples/browser-create-react-app/public/favicon.ico
deleted file mode 100644
index b2f1f9683f..0000000000
Binary files a/examples/browser-create-react-app/public/favicon.ico and /dev/null differ
diff --git a/examples/browser-create-react-app/public/index.html b/examples/browser-create-react-app/public/index.html
deleted file mode 100755
index 35878351ef..0000000000
--- a/examples/browser-create-react-app/public/index.html
+++ /dev/null
@@ -1,41 +0,0 @@
-
-
-
-
-
-
-
-
-
-
- IPFS React App
-
-
- You need to enable JavaScript to run this app.
-
-
-
-
diff --git a/examples/browser-create-react-app/public/manifest.json b/examples/browser-create-react-app/public/manifest.json
deleted file mode 100755
index 5845b822ec..0000000000
--- a/examples/browser-create-react-app/public/manifest.json
+++ /dev/null
@@ -1,15 +0,0 @@
-{
- "short_name": "IPFS React App",
- "name": "IPFS Create React App Example",
- "icons": [
- {
- "src": "favicon.ico",
- "sizes": "64x64 32x32 24x24 16x16",
- "type": "image/x-icon"
- }
- ],
- "start_url": ".",
- "display": "standalone",
- "theme_color": "#000000",
- "background_color": "#ffffff"
-}
diff --git a/examples/browser-create-react-app/screenshot.png b/examples/browser-create-react-app/screenshot.png
deleted file mode 100644
index 7dab75b469..0000000000
Binary files a/examples/browser-create-react-app/screenshot.png and /dev/null differ
diff --git a/examples/browser-create-react-app/src/App.js b/examples/browser-create-react-app/src/App.js
deleted file mode 100755
index f742be5208..0000000000
--- a/examples/browser-create-react-app/src/App.js
+++ /dev/null
@@ -1,52 +0,0 @@
-import React from 'react'
-import useIpfsFactory from './hooks/use-ipfs-factory.js'
-import useIpfs from './hooks/use-ipfs.js'
-import logo from './ipfs-logo.svg'
-
-const App = () => {
- const { ipfs, ipfsInitError } = useIpfsFactory({ commands: ['id'] })
- const id = useIpfs(ipfs, 'id')
- return (
-
-
-
-
-
- IPFS React
-
-
- {ipfsInitError && (
-
- Error: {ipfsInitError.message || ipfsInitError}
-
- )}
- {id && }
-
-
- )
-}
-
-const Title = ({ children }) => {
- return (
- {children}
- )
-}
-
-const IpfsId = (props) => {
- if (!props) return null
- return (
-
- Connected to IPFS
-
- {['id', 'agentVersion'].map((key) => (
-
- ))}
-
-
- )
-}
-
-export default App
diff --git a/examples/browser-create-react-app/src/App.test.js b/examples/browser-create-react-app/src/App.test.js
deleted file mode 100755
index 4bf19359ea..0000000000
--- a/examples/browser-create-react-app/src/App.test.js
+++ /dev/null
@@ -1,9 +0,0 @@
-import React from 'react'
-import ReactDOM from 'react-dom'
-import App from './App'
-
-it('renders without crashing', () => {
- const div = document.createElement('div')
- ReactDOM.render( , div)
- ReactDOM.unmountComponentAtNode(div)
-})
diff --git a/examples/browser-create-react-app/src/hooks/use-ipfs-factory.js b/examples/browser-create-react-app/src/hooks/use-ipfs-factory.js
deleted file mode 100644
index dcd4da6607..0000000000
--- a/examples/browser-create-react-app/src/hooks/use-ipfs-factory.js
+++ /dev/null
@@ -1,57 +0,0 @@
-import Ipfs from 'ipfs'
-import { useEffect, useState } from 'react'
-
-let ipfs = null
-
-/*
- * A quick demo using React hooks to create an ipfs instance.
- *
- * Hooks are brand new at the time of writing, and this pattern
- * is intended to show it is possible. I don't know if it is wise.
- *
- * Next steps would be to store the ipfs instance on the context
- * so use-ipfs calls can grab it from there rather than expecting
- * it to be passed in.
- */
-export default function useIpfsFactory () {
- const [isIpfsReady, setIpfsReady] = useState(Boolean(ipfs))
- const [ipfsInitError, setIpfsInitError] = useState(null)
-
- useEffect(() => {
- // The fn to useEffect should not return anything other than a cleanup fn,
- // So it cannot be marked async, which causes it to return a promise,
- // Hence we delegate to a async fn rather than making the param an async fn.
- async function startIpfs () {
- if (ipfs) {
- console.log('IPFS already started')
- } else if (window.ipfs && window.ipfs.enable) {
- console.log('Found window.ipfs')
- ipfs = await window.ipfs.enable({ commands: ['id'] })
- } else {
- try {
- console.time('IPFS Started')
- ipfs = await Ipfs.create()
- console.timeEnd('IPFS Started')
- } catch (error) {
- console.error('IPFS init error:', error)
- ipfs = null
- setIpfsInitError(error)
- }
- }
-
- setIpfsReady(Boolean(ipfs))
- }
-
- startIpfs()
- return function cleanup () {
- if (ipfs && ipfs.stop) {
- console.log('Stopping IPFS')
- ipfs.stop().catch(err => console.error(err))
- ipfs = null
- setIpfsReady(false)
- }
- }
- }, [])
-
- return { ipfs, isIpfsReady, ipfsInitError }
-}
diff --git a/examples/browser-create-react-app/src/hooks/use-ipfs.js b/examples/browser-create-react-app/src/hooks/use-ipfs.js
deleted file mode 100644
index 39678bb16b..0000000000
--- a/examples/browser-create-react-app/src/hooks/use-ipfs.js
+++ /dev/null
@@ -1,26 +0,0 @@
-import { useState, useEffect } from 'react'
-import dotProp from 'dot-prop'
-
-/*
- * Pass the command you'd like to call on an ipfs instance.
- *
- * Uses setState to capture the response, so your component
- * will re-render when the result turns up.
- *
- */
-export default function useIpfs (ipfs, cmd, opts) {
- const [res, setRes] = useState(null)
- useEffect(() => {
- callIpfs(ipfs, cmd, opts, setRes)
- }, [ipfs, cmd, opts])
- return res
-}
-
-async function callIpfs (ipfs, cmd, opts, setRes) {
- if (!ipfs) return null
- console.log(`Call ipfs.${cmd}`)
- const ipfsCmd = dotProp.get(ipfs, cmd)
- const res = await ipfsCmd(opts)
- console.log(`Result ipfs.${cmd}`, res)
- setRes(res)
-}
diff --git a/examples/browser-create-react-app/src/index.css b/examples/browser-create-react-app/src/index.css
deleted file mode 100755
index d49edef62c..0000000000
--- a/examples/browser-create-react-app/src/index.css
+++ /dev/null
@@ -1,2 +0,0 @@
-@import "../node_modules/tachyons";
-@import "../node_modules/ipfs-css";
diff --git a/examples/browser-create-react-app/src/index.js b/examples/browser-create-react-app/src/index.js
deleted file mode 100755
index 49624cc3e5..0000000000
--- a/examples/browser-create-react-app/src/index.js
+++ /dev/null
@@ -1,6 +0,0 @@
-import React from 'react'
-import ReactDOM from 'react-dom'
-import './index.css'
-import App from './App'
-
-ReactDOM.render( , document.getElementById('root'))
diff --git a/examples/browser-create-react-app/src/ipfs-logo.svg b/examples/browser-create-react-app/src/ipfs-logo.svg
deleted file mode 100644
index 5d24074b66..0000000000
--- a/examples/browser-create-react-app/src/ipfs-logo.svg
+++ /dev/null
@@ -1 +0,0 @@
-IPFS logo (new)
\ No newline at end of file
diff --git a/examples/browser-create-react-app/test.js b/examples/browser-create-react-app/test.js
deleted file mode 100644
index 812769aca0..0000000000
--- a/examples/browser-create-react-app/test.js
+++ /dev/null
@@ -1,16 +0,0 @@
-'use strict'
-
-const pkg = require('./package.json')
-
-module.exports = {
- [pkg.name]: function (browser) {
- browser
- .url(process.env.IPFS_EXAMPLE_TEST_URL)
- .waitForElementVisible('[data-test=title]')
- .assert.containsText('[data-test=title]', 'Connected to IPFS')
- .assert.elementPresent('[data-test=id')
- .assert.elementPresent('[data-test=agentVersion')
- .end()
- }
-}
-
diff --git a/examples/browser-exchange-files/CHANGELOG.md b/examples/browser-exchange-files/CHANGELOG.md
deleted file mode 100644
index ec56590c16..0000000000
--- a/examples/browser-exchange-files/CHANGELOG.md
+++ /dev/null
@@ -1,49 +0,0 @@
-# Change Log
-
-All notable changes to this project will be documented in this file.
-See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
-
-## [0.1.1](https://github.com/ipfs/js-ipfs/compare/example-exchange-files-in-browser@0.1.0...example-exchange-files-in-browser@0.1.1) (2020-04-08)
-
-**Note:** Version bump only for package example-exchange-files-in-browser
-
-
-
-
-
-# 0.1.0 (2020-03-31)
-
-
-### Bug Fixes
-
-* examples after files API refactor ([#1740](https://github.com/ipfs/js-ipfs/issues/1740)) ([34ec036](https://github.com/ipfs/js-ipfs/commit/34ec036b0df9563a014c1348f0a056c1f98aadad))
-* fix exchange in files example ([#2913](https://github.com/ipfs/js-ipfs/issues/2913)) ([cd46c78](https://github.com/ipfs/js-ipfs/commit/cd46c7899e805227dfe8a566cf354a1a127299c3))
-* update *-star multiaddrs to explicity say that they need tcp and a port ([#1117](https://github.com/ipfs/js-ipfs/issues/1117)) ([9eda8a8](https://github.com/ipfs/js-ipfs/commit/9eda8a8287159c12b4df017c3d0cdac083a0b4f0))
-* update option in exchange files in browser example ([#2087](https://github.com/ipfs/js-ipfs/issues/2087)) ([63469ed](https://github.com/ipfs/js-ipfs/commit/63469ed2a21f207a947d915bfe1c1beda3eaa0e3))
-
-
-### Code Refactoring
-
-* return peer IDs as strings not CIDs ([#2729](https://github.com/ipfs/js-ipfs/issues/2729)) ([16d540c](https://github.com/ipfs/js-ipfs/commit/16d540c540f375061d83dafaf6c38d0b7c4a3d60))
-
-
-### Features
-
-* add circuit relay and aegir 12 (+ big refactor) ([104ef1e](https://github.com/ipfs/js-ipfs/commit/104ef1ef6cc64c09ec886f67c28e9b5d37bc9e66))
-* gossipsub as default pubsub ([#2298](https://github.com/ipfs/js-ipfs/issues/2298)) ([902e045](https://github.com/ipfs/js-ipfs/commit/902e04547e8cd0aaee994193ef664f662ff07683))
-* implementing the new streaming interfaces ([#1086](https://github.com/ipfs/js-ipfs/issues/1086)) ([2c4b8b3](https://github.com/ipfs/js-ipfs/commit/2c4b8b325b94d4506b87441f06c5d29bb6f37f72))
-
-
-### BREAKING CHANGES
-
-* Where `PeerID`s were previously [CID](https://www.npmjs.com/package/cids)s, now they are Strings
-
-- `ipfs.bitswap.stat().peers[n]` is now a String (was a CID)
-- `ipfs.dht.findPeer().id` is now a String (was a CID)
-- `ipfs.dht.findProvs()[n].id` is now a String (was a CID)
-- `ipfs.dht.provide()[n].id` is now a String (was a CID)
-- `ipfs.dht.put()[n].id` is now a String (was a CID)
-- `ipfs.dht.query()[n].id` is now a String (was a CID)
-- `ipfs.id().id` is now a String (was a CID)
-- `ipfs.id().addresses[n]` are now [Multiaddr](https://www.npmjs.com/package/multiaddr)s (were Strings)
-* The default pubsub implementation has changed from floodsub to [gossipsub](https://github.com/ChainSafe/gossipsub-js). Additionally, to enable pubsub programmatically set `pubsub.enabled: true` instead of `EXPERIMENTAL.pubsub: true` or via the CLI pass `--enable-pubsub` instead of `--enable-pubsub-experiment` to `jsipfs daemon`.
diff --git a/examples/browser-exchange-files/README.md b/examples/browser-exchange-files/README.md
deleted file mode 100644
index a23111c236..0000000000
--- a/examples/browser-exchange-files/README.md
+++ /dev/null
@@ -1,243 +0,0 @@
-# Exchange files between the browser and other IPFS nodes
-
-This tutorial will help you exchange files between browser nodes and go-ipfs or js-ipfs nodes!
-
-**Note:** As `js-ipfs@0.41.x` currently doesn't support DHT peer discovery, the peer from which you are fetching data should be within the reach (local or in public IP) of the browser node.
-
-That being said, we will explain how to circumvent these caveats and once they are fixed, we'll update the tutorial as well.
-
-## Application diagram
-
-The goal of this tutorial is to create a simple application with an IPFS node that dials to other instances using WebRTC, and at the same time dial and transfer files from a browser IPFS node using WebSockets as the transport.
-
-```
-┌──────────────┐ ┌──────────────┐
-│ Browser │ libp2p(WebRTC) │ Browser │
-│ │◀──────────────▶│ │
-└──────────────┘ └──────────────┘
- ▲ ▲
- │WebSockets WebSockets│
- │ ┌──────────────┐ │
- │ │ Desktop │ │
- └───────▶│ Terminal │◀─────────┘
- └──────────────┘
-```
-
-## Tutorial goal
-
-The goal of this tutorial is for you to have something like this in the end:
-
-
-
-## Step-by-step instructions
-
-Here's what we are going to be doing:
-
-1. Install a `go-ipfs` or `js-ipfs` node in your machine
-2. Make your daemons listen on WebSockets
-3. Start a `libp2p-webrtc-star` signaling server
-4. Start the app
-5. Dial to a node using WebSockets (your desktop ones)
-6. Transfer files between all of your nodes!
-
-Just follow the instructions below and it will be up and running in no time!
-
-## Before you start
-
-First clone this repo, install dependencies in the project root and build the project.
-
-```console
-$ git clone https://github.com/ipfs/js-ipfs.git
-$ cd js-ipfs
-$ npm install
-$ npm run bundle
-```
-
-## Running the example
-
-### 1. Install `go-ipfs` or `js-ipfs`
-
-If you already have `go-ipfs` or `js-ipfs` installed in your machine, you can skip this step. Otherwise, read on.
-
-This tutorial works with either `go-ipfs` or `js-ipfs`, so you can install one of your choosing.
-
-`go-ipfs` can be installed via its binary [here](https://ipfs.io/ipns/dist.ipfs.io/#go-ipfs). Alternatively, you can follow the install instructions in [ipfs/go-ipfs](https://github.com/ipfs/go-ipfs#install).
-
-`js-ipfs` requires you to have [node and npm](https://www.npmjs.com/get-npm) installed. Then, you simply run:
-
-```sh
-> npm install --global ipfs
-```
-
-This will alias `jsipfs` on your machine; this is to avoid issues with `go-ipfs` being called `ipfs`.
-
-At this point, you should have either `js-ipfs` or `go-ipfs` running. Now, initialize it:
-
-```sh
-> ipfs init
-# or
-> jsipfs init
-```
-
-This will set up an IPFS repo in your home directory.
-
-### 2. Make your daemons listen on WebSockets
-
-Now you need to edit your `config` file, the one you just set up with `{js}ipfs init`. It should be in either `~/.jsipfs/config` or `~/.ipfs/config`, depending on whether you're using JS or Go.
-
-**Note:** `js-ipfs` sets up a websocket listener by default, so if you're using the JS implementation you can skip this and just start the daemon.
-
-Since websockets support is currently not on by default, you'll need to add a WebSockets address manually. Look into your config file to find the `Addresses` section:
-
-```json
-"Addresses": {
- "Swarm": [
- "/ip4/0.0.0.0/tcp/4002"
- ],
- "API": "/ip4/127.0.0.1/tcp/5002",
- "Gateway": "/ip4/127.0.0.1/tcp/9090"
-}
-```
-
-Add the `/ip4/127.0.0.1/tcp/4003/ws` entry to your `Swarm` array. Now it should look like this:
-
-```json
-"Addresses": {
- "Swarm": [
- "/ip4/0.0.0.0/tcp/4002",
- "/ip4/127.0.0.1/tcp/4003/ws"
- ],
- "API": "/ip4/127.0.0.1/tcp/5002",
- "Gateway": "/ip4/127.0.0.1/tcp/9090"
-}
-```
-
-Save the file and it should be able to listen on Websockets. We're ready to start the daemon.
-
-```sh
-> ipfs daemon
-# or
-> jsipfs daemon
-```
-
-You should see the Websocket address in the output:
-
-```sh
-Initializing daemon...
-Swarm listening on /ip4/127.0.0.1/tcp/4001
-Swarm listening on /ip4/127.0.0.1/tcp/4003/ws
-Swarm listening on /ip4/192.168.10.38/tcp/4001
-Swarm listening on /ip4/192.168.10.38/tcp/4003/ws
-API server listening on /ip4/127.0.0.1/tcp/5001
-Gateway (readonly) server listening on /ip4/0.0.0.0/tcp/8080
-Daemon is ready
-```
-
-Check the `/ws` in line 5, that means it is listening. Cool.
-
-### 3. Start the app
-
-Make sure you're in `js-ipfs/examples/exchange-files-in-browser`.
-
-We'll need to bundle the dependencies to run the app. Let's do it:
-
-```sh
-> npm run bundle
-...
-> npm start
-```
-
-You should see something like this if all went well:
-
-```sh
-Starting up http-server, serving public
-Available on:
- http://127.0.0.1:12345
- http://192.168.2.92:12345
-Hit CTRL-C to stop the server
-```
-
-Now go to http://127.0.0.1:12345 in a modern browser and you're on!
-
-### 4. Dial to a node using WebSockets (your desktop ones)
-
-Make sure you have a daemon running. If you don't, run:
-
-```sh
-> ipfs daemon
-# or
-> jsipfs daemon
-```
-
-Open another terminal window to find the websocket addresses that it is listening on:
-
-```sh
-> ipfs id
-# or
-> jsipfs id
-```
-
-It should look like this: `/ip4/127.0.0.1/tcp/4003/ws/ipfs/`.
-
-Copy and paste the *multiaddr* to connect to that peer:
-
-
-
-Check that you got connected:
-
-
-
-> It only works on localhost environments because of a restriction with WebCrypto where it will not load in a page unless that page is loaded over https, or the page is served from localhost: [libp2p/js-libp2p-crypto#105][js-libp2p-crypto#105]
-
-[js-libp2p-crypto#105]: https://github.com/libp2p/js-libp2p-crypto/issues/105
-
-### 5. Transfer files between all of your nodes!
-
-Now you can add files through the CLI with:
-
-```sh
-> ipfs add
-# or
-> jsipfs add
-```
-
-Copy and paste the *multihash* and fetch the file in the browser!
-
-
-
-You can also open two browser tabs, drag and drop files in one of them, and fetch them in the other!
-
-But the coolest thing about this tutorial is `pubsub`! You can open two tabs that will share files through workspaces named after the url. Try opening two tabs with the following url:
-
-```
-http://127.0.0.1:12345/#file-exchange
-# You can substitute `file-exchange` with anything you like, just make sure the two tabs are in the same workspace.
-```
-
-Now every file that you upload in one tab will appear in the other! You can even open a new tab in that workspace and it will sync the files that were added before!
-
-
-
-## Going to production?
-
-This example uses public webrtc-star servers. These servers should be used for experimenting and demos, they **MUST** not be used in production as there is no guarantee on availability.
-
-### Use your own `libp2p-webrtc-star` signaling server
-
-This server allows the two browser nodes to talk to each other by doing the initial handshake and network introductions.
-
-First install the `libp2p-webrtc-star` module globally:
-
-```sh
-> npm install -g libp2p-webrtc-star
-```
-
-This will give you the `webrtc-star` command. Use this to start a signaling server:
-
-```sh
-> webrtc-star
-```
-
-By default it will listen to all incoming connections on port 13579. Override this with the `--host` and/or `--port` options. That is, the following multiaddr: `/ip4/127.0.0.1/tcp/13579/wss/p2p-webrtc-star`.
-
-You should add your signaling server in the IPFS config swarm addresses, so that you listen for new connections through it.
diff --git a/examples/browser-exchange-files/img/connect-1.png b/examples/browser-exchange-files/img/connect-1.png
deleted file mode 100644
index 5b247a9470..0000000000
Binary files a/examples/browser-exchange-files/img/connect-1.png and /dev/null differ
diff --git a/examples/browser-exchange-files/img/connect-2.png b/examples/browser-exchange-files/img/connect-2.png
deleted file mode 100644
index a481be379d..0000000000
Binary files a/examples/browser-exchange-files/img/connect-2.png and /dev/null differ
diff --git a/examples/browser-exchange-files/img/diagram.monopic b/examples/browser-exchange-files/img/diagram.monopic
deleted file mode 100644
index 35f88ab30f..0000000000
Binary files a/examples/browser-exchange-files/img/diagram.monopic and /dev/null differ
diff --git a/examples/browser-exchange-files/img/diagram.txt b/examples/browser-exchange-files/img/diagram.txt
deleted file mode 100644
index 05c9ff91cb..0000000000
--- a/examples/browser-exchange-files/img/diagram.txt
+++ /dev/null
@@ -1,19 +0,0 @@
-┌──────────────┐ ┌──────────────┐
-│ Browser │ │ Browser │
-│ │ WebRTC │ │
-│ │◀─────────────────▶│ │
-│ │ │ │
-└──────────────┘ └──────────────┘
- ▲ ▲
- │ │
- │ │
- │ │
- │WebSockets WebSockets│
- │ │
- │ │
- │ ┌──────────────┐ │
- │ │ Desktop │ │
- │ │ │ │
- └───────▶│ │◀─────────┘
- │ │
- └──────────────┘
\ No newline at end of file
diff --git a/examples/browser-exchange-files/img/fetch.png b/examples/browser-exchange-files/img/fetch.png
deleted file mode 100644
index 2bcfef1d9d..0000000000
Binary files a/examples/browser-exchange-files/img/fetch.png and /dev/null differ
diff --git a/examples/browser-exchange-files/img/goal.png b/examples/browser-exchange-files/img/goal.png
deleted file mode 100644
index 50fb3d5a94..0000000000
Binary files a/examples/browser-exchange-files/img/goal.png and /dev/null differ
diff --git a/examples/browser-exchange-files/img/pubsub.png b/examples/browser-exchange-files/img/pubsub.png
deleted file mode 100644
index 9fc39b464a..0000000000
Binary files a/examples/browser-exchange-files/img/pubsub.png and /dev/null differ
diff --git a/examples/browser-exchange-files/package.json b/examples/browser-exchange-files/package.json
deleted file mode 100644
index 1c122d4f5c..0000000000
--- a/examples/browser-exchange-files/package.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "name": "example-exchange-files-in-browser",
- "version": "1.0.0",
- "private": true,
- "scripts": {
- "clean": "rimraf public/bundle.js",
- "bundle": "browserify public/app.js > public/bundle.js",
- "start": "http-server -c-1 -p 12345 public",
- "dev": "npm run bundle && npm run start",
- "test": "test-ipfs-example"
- },
- "license": "MIT",
- "devDependencies": {
- "browserify": "^17.0.0",
- "execa": "^5.0.0",
- "http-server": "^0.12.3",
- "ipfs-http-client": "^50.1.1",
- "uint8arrays": "^2.1.3"
- },
- "dependencies": {
- "ipfs": "^0.55.3",
- "it-all": "^1.0.4",
- "libp2p-websockets": "^0.15.6",
- "rimraf": "^3.0.2",
- "test-ipfs-example": "^3.0.0"
- }
-}
diff --git a/examples/browser-exchange-files/public/app.css b/examples/browser-exchange-files/public/app.css
deleted file mode 100644
index 61b04121d0..0000000000
--- a/examples/browser-exchange-files/public/app.css
+++ /dev/null
@@ -1,298 +0,0 @@
-
-/* ===========================================================================
- Layout
- =========================================================================== */
-
-* {
- box-sizing: border-box;
-}
-
-body {
- min-height: 100vh;
- font-family: sans-serif;
- color: #0B3A53;
- background: #141E30; /* Fallback for old browsers */
- background: -webkit-linear-gradient(to top, #243B55, #141E30); /* Chrome 10-25, Safari 5.1-6 */
- background: linear-gradient(to top, #243B55, #141E30); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
- pointer-events: auto;
- padding: 0;
- margin: 0;
-}
-
-h1, h2, h3 {
- margin: 0;
-}
-
-h1 {
- font-size: 2em;
- font-weight: 300;
-}
-
-h2 {
- font-size: 1.25em;
- font-weight: 700;
-}
-
-h3 {
- font-size: 1.0em;
- font-weight: 700;
-}
-
-header {
- display: flex;
- justify-content: center;
- align-items: center;
- padding: 2em 0;
-}
-
-main {
- width: 90%;
- margin: 0 auto;
-}
-
-.columns {
- display: flex;
- justify-content: space-between;
-}
-
-
-/* ===========================================================================
- Buttons & Inputs
- =========================================================================== */
-
-button {
- padding: 0.625em 1.5em;
- border: 2px solid #69C4CD;
- border-radius: 2px;
- background-color: #69C4CD;
- color: #FFF;
- font-size: 0.9em;
- cursor: pointer;
- outline: none;
-}
-
-button:hover {
- opacity: 0.9;
-}
-
-input {
- width: 100%;
- margin-right: 3px;
- padding: 0.7em;
- border: 2px solid rgba(0, 0, 0, 0.2);
- border-radius: 2px;
- color: #000;
- outline: none;
-}
-
-input:hover,
-input:focus,
-input:active {
- border-color: #69C4CD;
-}
-
-.input-button {
- display: flex;
-}
-
-.disabled *,
-input:disabled,
-button:disabled {
- opacity: 0.2;
-}
-
-/* ===========================================================================
- Tables
- =========================================================================== */
-
-table {
- width: 100%;
- margin: 1em 0;
- padding: 1em;
- border-spacing: 0;
- background-color: #FFF;
- word-break: break-all;
-}
-
-table th,
-table td {
- padding: 1em;
- font-size: 0.8em;
- text-align: left;
- font-weight: normal;
-}
-
-table th {
- padding-top: 0;
- font-size: 0.7em;
- text-transform: uppercase;
- opacity: 0.5;
-}
-
-table tbody tr:nth-child(odd) {
- background-color: #F7F8FA;
-}
-
-table tbody tr:hover {
- background-color: rgb(100, 196, 205);
- background-color: rgba(100, 196, 205, 0.2);
-}
-
-.table-action {
- opacity: 0.5;
-}
-
-.table-action:hover {
- opacity: 1;
-}
-
-/* ===========================================================================
- Box
- =========================================================================== */
-
-.box {
- display: flex;
- flex-direction: column;
- margin-bottom: 1em;
- padding: 1em;
- border-radius: 2px;
- background-color: #F7F8FA;
-}
-
-.box > h2 {
- display: block;
- border-bottom: 1px solid #B7BBC8;
- text-align: center;
- padding-bottom: 0.5em;
- margin-bottom: 1em;
-}
-
-/* Node
- =========================================================================== */
-
-.box.node > div {
- display: flex;
- margin-bottom: 1em;
-}
-
-.box.node > div:last-child {
- margin-bottom: 0;
-}
-
-.box.node > div > h3 {
- flex: 0 0 15%;
-}
-
-.box.node > div pre,
-.box.node > div > ul {
- flex: 0 0 85%;
- margin: 0;
-}
-
-.box.node ul {
- margin: 0;
- padding: 0;
- list-style: none;
-}
-
-.node-addresses li {
- margin-bottom: 0.5em;
- font-size: 0.7em;
- word-wrap: break-word;
-}
-
-#logs {
- margin: 0;
- color: #EA5037;
-}
-
-#logs.success {
- color: #0CB892;
-}
-
-/* Peers
- =========================================================================== */
-
-#peers {
- flex: 0 0 calc(35% - 1em);
-}
-
-/* Files
- =========================================================================== */
-
-#files {
- flex: 0 0 65%;
- min-height: 500px;
-}
-
-#file-status {
- font-style: italic;
- color: #6ACAD1;
- font-size: 0.8em;
- margin: 1em 0;
-}
-
-#files table th:nth-child(1),
-#files table td:nth-child(1) {
- width: 35%;
-}
-
-#files table th:nth-child(2),
-#files table td:nth-child(2) {
- width: 50%;
-}
-
-#files table th:nth-child(3),
-#files table td:nth-child(3) {
- width: 15%;
-}
-
-#files .empty-row td {
- text-align: center;
- opacity: 0.5;
-}
-
-#drag-container {
- height: 10em;
- margin-top: 1em;
- display: flex;
- justify-content: center;
- align-items: center;
- border: 1px dashed;
- border-radius: 2px;
- opacity: 0.7;
-}
-
-#drag-container.dragging {
- background-color: #E7E8EE;
- opacity: 1;
-
-}
-
-#drag-container p {
- margin-left: 1em;
-}
-
-#progress-container {
- margin-top: 1em;
- border-radius: 0.5em;
- background-color: #0B3A53;
- overflow-x: hidden;
-}
-
-#progress-bar {
- height: 1em;
- border-radius: 0.5em;
- background-color: #6ACAD1;
- transform: translateX(-100%);
-}
-
-/* ===========================================================================
- Responsiveness
- =========================================================================== */
-
-@media (max-width: 768px) {
- .columns {
- flex-direction: column-reverse;
- }
-}
diff --git a/examples/browser-exchange-files/public/app.js b/examples/browser-exchange-files/public/app.js
deleted file mode 100644
index 5b20d82f84..0000000000
--- a/examples/browser-exchange-files/public/app.js
+++ /dev/null
@@ -1,401 +0,0 @@
-/* global location */
-'use strict'
-
-const IPFS = require('ipfs')
-const WS = require('libp2p-websockets')
-const filters = require('libp2p-websockets/src/filters')
-const transportKey = WS.prototype[Symbol.toStringTag]
-
-const all = require('it-all')
-const uint8ArrayConcat = require('uint8arrays/concat')
-const uint8ArrayFromString = require('uint8arrays/from-string')
-
-// Node
-const $nodeId = document.querySelector('.node-id')
-const $nodeAddresses = document.querySelector('.node-addresses')
-const $logs = document.querySelector('#logs')
-// Peers
-const $peers = document.querySelector('#peers')
-const $peersList = $peers.querySelector('#connected-peers')
-const $workspacePeersList = $peers.querySelector('#workspace-peers')
-const $multiaddrInput = document.querySelector('#multiaddr-input')
-const $connectButton = document.querySelector('#peer-btn')
-// Files
-const $cidInput = document.querySelector('#cid-input')
-const $fetchButton = document.querySelector('#fetch-btn')
-const $dragContainer = document.querySelector('#drag-container')
-const $progressBar = document.querySelector('#progress-bar')
-const $fileHistory = document.querySelector('#file-history tbody')
-const $emptyRow = document.querySelector('.empty-row')
-// Misc
-const $allDisabledButtons = document.querySelectorAll('button:disabled')
-const $allDisabledInputs = document.querySelectorAll('input:disabled')
-const $allDisabledElements = document.querySelectorAll('.disabled')
-
-// Workspace inputs
-const $workspaceInput = document.querySelector('#workspace-input')
-const $workspaceBtn = document.querySelector('#workspace-btn')
-
-let FILES = []
-let workspace = (location.hash || 'default-workspace').replace(/^#/, '')
-
-let fileSize = 0
-
-/** @type {import('ipfs').IPFS} */
-let node
-let info
-
-/* ===========================================================================
- Start the IPFS node
- =========================================================================== */
-
-async function start () {
- if (!node) {
- node = await IPFS.create({
- repo: 'ipfs-' + Math.random(),
- config: {
- Addresses: {
- Swarm: [
- // This is a public webrtc-star server
- '/dns4/wrtc-star1.par.dwebops.pub/tcp/443/wss/p2p-webrtc-star',
- '/dns4/wrtc-star2.sjc.dwebops.pub/tcp/443/wss/p2p-webrtc-star',
- '/ip4/127.0.0.1/tcp/13579/wss/p2p-webrtc-star'
- ]
- },
- // If you want to connect to the public bootstrap nodes, remove the next line
- Bootstrap: []
- },
- libp2p: {
- config: {
- transport: {
- // This is added for local demo!
- // In a production environment the default filter should be used
- // where only DNS + WSS addresses will be dialed by websockets in the browser.
- [transportKey]: {
- filter: filters.all
- }
- }
- }
- }
- })
-
- try {
- info = await node.id()
-
- const addressesHtml = info.addresses.map((address) => {
- return `${address} `
- }).join('')
- $nodeId.innerText = info.id
- $nodeAddresses.innerHTML = addressesHtml
- $allDisabledButtons.forEach(b => { b.disabled = false })
- $allDisabledInputs.forEach(b => { b.disabled = false })
- $allDisabledElements.forEach(el => { el.classList.remove('disabled') })
- } catch (err) {
- return onError(err)
- }
-
- onSuccess('Node is ready.')
-
- setInterval(async () => {
- try {
- await refreshPeerList()
- } catch (err) {
- err.message = `Failed to refresh the peer list: ${err.message}`
- onError(err)
- }
- }, 1000)
-
- setInterval(async () => {
- try {
- await refreshWorkspacePeerList()
- } catch (err) {
- err.message = `Failed to refresh the workspace peer list: ${err.message}`
- onError(err)
- }
- }, 1000)
-
- setInterval(async () => {
- try {
- await sendFileList()
- } catch (err) {
- err.message = `Failed to publish the file list: ${err.message}`
- onError(err)
- }
- }, 10000)
-
- try {
- await subscribeToWorkspace()
- } catch (err) {
- err.message = `Failed to subscribe to the workspace: ${err.message}`
- return onError(err)
- }
-
- window.addEventListener('hashchange', async () => {
- try {
- await workspaceUpdated()
- } catch (err) {
- err.message = `Failed to subscribe to the updated workspace: ${err.message}`
- onError(err)
- }
- })
- }
-}
-
-/* ===========================================================================
- Pubsub
- =========================================================================== */
-
-const messageHandler = (message) => {
- const myNode = info.id.toString()
- const hash = message.data.toString()
- const messageSender = message.from
-
- // append new files when someone uploads them
- if (myNode !== messageSender && !FILES.includes(hash)) {
- $cidInput.value = hash
- getFile()
- }
-}
-
-const subscribeToWorkspace = async () => {
- await node.pubsub.subscribe(workspace, messageHandler)
- const msg = `Subscribed to workspace '${workspace}'`
- $logs.innerHTML = msg
-}
-
-// unsubscribe from old workspace and re-subscribe to new one
-const workspaceUpdated = async () => {
- await node.pubsub.unsubscribe(workspace)
- // clear files from old workspace
- FILES = []
- $fileHistory.innerHTML = ''
-
- workspace = location.hash.replace(/^#/, '')
- await subscribeToWorkspace()
-}
-
-const publishHash = (hash) => {
- const data = uint8ArrayFromString(hash)
- return node.pubsub.publish(workspace, data)
-}
-
-/* ===========================================================================
- Files handling
- =========================================================================== */
-
-const sendFileList = () => Promise.all(FILES.map(publishHash))
-
-const updateProgress = (bytesLoaded) => {
- let percent = 100 - ((bytesLoaded / fileSize) * 100)
-
- $progressBar.style.transform = `translateX(${-percent}%)`
-}
-
-const resetProgress = () => {
- $progressBar.style.transform = 'translateX(-100%)'
-}
-
-function appendFile (name, hash, size, data) {
- const file = new window.Blob([data], { type: 'application/octet-binary' })
- const url = window.URL.createObjectURL(file)
- const row = document.createElement('tr')
-
- const nameCell = document.createElement('td')
- nameCell.innerHTML = name
-
- const hashCell = document.createElement('td')
- hashCell.innerHTML = hash
-
- const sizeCell = document.createElement('td')
- sizeCell.innerText = size
-
- const downloadCell = document.createElement('td')
- const link = document.createElement('a')
- link.setAttribute('href', url)
- link.setAttribute('download', name)
- link.innerHTML = ' '
- downloadCell.appendChild(link)
-
- row.appendChild(nameCell)
- row.appendChild(hashCell)
- row.appendChild(sizeCell)
- row.appendChild(downloadCell)
-
- $fileHistory.insertBefore(row, $fileHistory.firstChild)
-
- return publishHash(hash)
-}
-
-async function getFile () {
- const hash = $cidInput.value
-
- $cidInput.value = ''
-
- if (!hash) {
- return onError('No CID was inserted.')
- } else if (FILES.includes(hash)) {
- return onSuccess('The file is already in the current workspace.')
- }
-
- FILES.push(hash)
-
- for await (const file of node.get(hash)) {
- if (file.content) {
- const content = uint8ArrayConcat(await all(file.content))
-
- await appendFile(file.name, hash, file.size, content)
- onSuccess(`The ${file.name} file was added.`)
- $emptyRow.style.display = 'none'
- }
- }
-}
-
-/* Drag & Drop
- =========================================================================== */
-
-const onDragEnter = () => $dragContainer.classList.add('dragging')
-
-const onDragLeave = () => $dragContainer.classList.remove('dragging')
-
-async function onDrop (event) {
- onDragLeave()
- event.preventDefault()
-
- const files = Array.from(event.dataTransfer.files)
-
- for (const file of files) {
- fileSize = file.size // Note: fileSize is used by updateProgress
-
- const fileAdded = await node.add({
- path: file.name,
- content: file
- }, {
- wrapWithDirectory: true,
- progress: updateProgress
- })
-
- // As we are wrapping the content we use that hash to keep
- // the original file name when adding it to the table
- $cidInput.value = fileAdded.cid.toString()
-
- resetProgress()
- await getFile()
- }
-}
-
-/* ===========================================================================
- Peers handling
- =========================================================================== */
-
-async function connectToPeer (event) {
- const multiaddr = $multiaddrInput.value
-
- if (!multiaddr) {
- throw new Error('No multiaddr was inserted.')
- }
-
- await node.swarm.connect(multiaddr)
-
- onSuccess(`Successfully connected to peer.`)
- $multiaddrInput.value = ''
-}
-
-async function refreshPeerList () {
- const peers = await node.swarm.peers()
-
- const peersAsHtml = peers.reverse()
- .map((peer) => {
- if (peer.addr) {
- const addr = peer.addr.toString()
-
- if (addr.indexOf('/p2p/') >= 0) {
- return addr
- } else {
- return addr + '/p2p/' + peer.peer
- }
- }
- })
- .map((addr) => {
- return `${addr} `
- }).join('')
-
- $peersList.innerHTML = peersAsHtml
-}
-
-async function refreshWorkspacePeerList () {
- const peers = await node.pubsub.peers(workspace)
-
- const peersAsHtml = peers.reverse()
- .map((addr) => {
- return `${addr} `
- }).join('')
-
- $workspacePeersList.innerHTML = peersAsHtml
-}
-
-/* ===========================================================================
- Error handling
- =========================================================================== */
-
-function onSuccess (msg) {
- $logs.classList.add('success')
- $logs.innerHTML = msg
-}
-
-function onError (err) {
- console.log(err)
- let msg = 'An error occured, check the dev console'
-
- if (err.stack !== undefined) {
- msg = err.stack
- } else if (typeof err === 'string') {
- msg = err
- }
-
- $logs.classList.remove('success')
- $logs.innerHTML = msg
-}
-
-window.onerror = onError
-
-/* ===========================================================================
- Boot the app
- =========================================================================== */
-
-const startApplication = () => {
- // Setup event listeners
- $dragContainer.addEventListener('dragenter', onDragEnter)
- $dragContainer.addEventListener('dragover', onDragEnter)
- $dragContainer.addEventListener('drop', async e => {
- try {
- await onDrop(e)
- } catch (err) {
- err.message = `Failed to add files: ${err.message}`
- onError(err)
- }
- })
- $dragContainer.addEventListener('dragleave', onDragLeave)
- $fetchButton.addEventListener('click', async () => {
- try {
- await getFile()
- } catch (err) {
- err.message = `Failed to fetch CID: ${err.message}`
- onError(err)
- }
- })
- $connectButton.addEventListener('click', async () => {
- try {
- await connectToPeer()
- } catch (err) {
- err.message = `Failed to connect to peer: ${err.message}`
- onError(err)
- }
- })
- $workspaceBtn.addEventListener('click', () => {
- window.location.hash = $workspaceInput.value
- })
-
- start()
-}
-
-startApplication()
diff --git a/examples/browser-exchange-files/public/assets/download.svg b/examples/browser-exchange-files/public/assets/download.svg
deleted file mode 100644
index 23ed96c51f..0000000000
--- a/examples/browser-exchange-files/public/assets/download.svg
+++ /dev/null
@@ -1,44 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/examples/browser-exchange-files/public/assets/ipfs-logo.svg b/examples/browser-exchange-files/public/assets/ipfs-logo.svg
deleted file mode 100644
index 5091cce61e..0000000000
--- a/examples/browser-exchange-files/public/assets/ipfs-logo.svg
+++ /dev/null
@@ -1 +0,0 @@
-IPFS logo (new)
\ No newline at end of file
diff --git a/examples/browser-exchange-files/public/assets/upload.svg b/examples/browser-exchange-files/public/assets/upload.svg
deleted file mode 100644
index 6e2f818a24..0000000000
--- a/examples/browser-exchange-files/public/assets/upload.svg
+++ /dev/null
@@ -1,39 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/examples/browser-exchange-files/public/favicon.ico b/examples/browser-exchange-files/public/favicon.ico
deleted file mode 100644
index 801f728c08..0000000000
Binary files a/examples/browser-exchange-files/public/favicon.ico and /dev/null differ
diff --git a/examples/browser-exchange-files/public/index.html b/examples/browser-exchange-files/public/index.html
deleted file mode 100644
index cbf8000c59..0000000000
--- a/examples/browser-exchange-files/public/index.html
+++ /dev/null
@@ -1,113 +0,0 @@
-
-
-
-
-
- IPFS - Exchange Files
-
-
-
-
-
-
-
-
-
-
Node
-
-
-
-
-
-
-
-
-
Workspace
-
-
- Join
-
-
-
-
-
-
-
-
Workspace Peers
-
-
-
-
- Connected Peers
-
-
-
-
-
-
Network Peers
-
-
-
- Connect
-
-
-
-
-
- Connected Peers
-
-
-
-
-
-
-
-
Files
-
-
-
- Fetch
-
-
-
-
-
Drag & drop a file to upload it.
-
-
-
-
-
-
-
- Name
- CID
- Size
-
-
-
-
- There are no files in this workspace.
-
-
-
-
-
-
-
-
-
-
-
diff --git a/examples/browser-exchange-files/test.js b/examples/browser-exchange-files/test.js
deleted file mode 100644
index f893098c17..0000000000
--- a/examples/browser-exchange-files/test.js
+++ /dev/null
@@ -1,203 +0,0 @@
-'use strict'
-
-const http = require('http')
-const fs = require('fs-extra')
-const path = require('path')
-const os = require('os')
-const execa = require('execa')
-const delay = require('delay')
-const { createFactory } = require('ipfsd-ctl')
-const df = createFactory({
- ipfsModule: require('ipfs'),
- ipfsHttpModule: require('ipfs-http-client')
-}, {
- js: {
- ipfsBin: require.resolve('ipfs/src/cli.js')
- }
-})
-const {
- startServer
-} = require('test-ipfs-example/utils')
-const pkg = require('./package.json')
-const webRTCStarSigServer = require('libp2p-webrtc-star/src/sig-server')
-
-const FILE_CONTENT = 'A file with some content'
-
-async function testUI (env) {
- const proc = execa(require.resolve('test-ipfs-example/node_modules/.bin/nightwatch'), [ '--config', require.resolve('test-ipfs-example/nightwatch.conf.js'), path.join(__dirname, 'test.js') ], {
- cwd: path.resolve(__dirname, '../'),
- env: {
- ...process.env,
- ...env,
- CI: true
- },
- all: true
- })
- proc.all.on('data', (data) => {
- process.stdout.write(data)
- })
-
- await proc
-}
-
-async function runTest () {
- const sigServer = await webRTCStarSigServer.start({
- host: '127.0.0.1',
- port: 13579
- })
-
- const relay = await df.spawn({
- type: 'js',
- ipfsOptions: {
- config: {
- Addresses: {
- Swarm: [
- '/ip4/127.0.0.1/tcp/0/ws'
- ]
- }
- }
- }
- })
-
- const { cid } = await relay.api.add(FILE_CONTENT)
-
- const server1 = await startServer(__dirname)
- const server2 = await startServer(__dirname)
-
- try {
- const id = await relay.api.id()
- const address = id.addresses
- .map(ma => ma.toString())
- .find(addr => addr.includes('/ws/p2p'))
-
- if (!address) {
- throw new Error(`Could not find web socket address in ${id.addresses}`)
- }
-
- const workspaceName = `test-${Math.random()}`
- const peerA = path.join(os.tmpdir(), `test-${Date.now()}-a.txt`)
- const peerB = path.join(os.tmpdir(), `test-${Date.now()}-b.txt`)
-
- console.info('Relay address', address)
-
- await Promise.all([
- testUI({
- IPFS_EXAMPLE_TEST_URL: server1.url,
- IPFS_RELAY_ADDRESS: address,
- IPFS_CID: cid,
- IPFS_WORKSPACE_NAME: workspaceName,
- IPFS_ADD_FILE: true,
- IPFS_LOCAL_PEER_ID_FILE: peerA,
- IPFS_REMOTE_PEER_ID_FILE: peerB
- }),
- testUI({
- IPFS_EXAMPLE_TEST_URL: server1.url,
- IPFS_RELAY_ADDRESS: address,
- IPFS_CID: cid,
- IPFS_WORKSPACE_NAME: workspaceName,
- IPFS_LOCAL_PEER_ID_FILE: peerB,
- IPFS_REMOTE_PEER_ID_FILE: peerA
- })
- ])
- } finally {
- await server2.stop()
- await server1.stop()
- await relay.stop()
- await sigServer.stop()
- }
-}
-
-module.exports = runTest
-
-module.exports[pkg.name] = function (browser) {
- let localPeerId = null
- let remotePeerId = null
-
- browser
- .url(process.env.IPFS_EXAMPLE_TEST_URL)
- .waitForElementVisible('#connected-peers tr td')
- .pause(1000)
-
- console.info('dialling relay', process.env.IPFS_RELAY_ADDRESS)
-
- browser
- .clearValue('#multiaddr-input')
- .setValue('#multiaddr-input', process.env.IPFS_RELAY_ADDRESS)
- .pause(1000)
- .click('#peer-btn')
-
- const relayPeerId = process.env.IPFS_RELAY_ADDRESS.split('/').pop()
-
- browser.expect.element('#connected-peers').text.to.contain(relayPeerId)
-
- console.info('joining workspace', process.env.IPFS_WORKSPACE_NAME)
-
- browser
- .clearValue('#workspace-input')
- .setValue('#workspace-input', process.env.IPFS_WORKSPACE_NAME)
- .pause(1000)
- .click('#workspace-btn')
-
- // exchange peer info
- browser.getText('.node-id', (result) => {
- localPeerId = result.value.trim()
- console.info('got local peer id', localPeerId)
- })
- .perform(async (browser, done) => {
- console.info('writing local peer id')
- await fs.writeFile(process.env.IPFS_LOCAL_PEER_ID_FILE, localPeerId)
-
- console.info('reading remote peer id')
- for (let i = 0; i < 100; i++) {
- try {
- remotePeerId = await fs.readFile(process.env.IPFS_REMOTE_PEER_ID_FILE, {
- encoding: 'utf8'
- })
-
- console.info('got remote peer id', remotePeerId)
- done()
-
- break
- } catch (err) {
-
- }
-
- await delay(1000)
- }
-
- console.info('waiting for remote peer', remotePeerId, 'to join workspace')
- browser.expect.element('#workspace-peers').text.to.contain(remotePeerId)
-
- await delay(1000)
- })
-
- // only one browser should add the file to the workspace
- if (process.env.IPFS_ADD_FILE) {
- browser
- .clearValue('#cid-input')
- .setValue('#cid-input', process.env.IPFS_CID)
- .pause(1000)
- .click('#fetch-btn')
- }
-
- browser.pause(1000)
-
- // but should both see the added file
- browser.expect.element('#file-history').text.to.contain(process.env.IPFS_CID)
-
- if (!process.env.IPFS_ADD_FILE) {
- // download the file from the other browser
- browser
- .getAttribute(`a[download=${process.env.IPFS_CID}]`, 'href', ({ value: url }) => {
- browser.executeAsync(function (url, done) {
- fetch(url)
- .then(res => res.text())
- .then(done, done)
- }, [ url ], ({ value: contents }) => {
- browser.expect(contents).to.equal(FILE_CONTENT)
- })
- })
- }
-
- browser.end()
-}
diff --git a/examples/browser-http-client-upload-file/README.md b/examples/browser-http-client-upload-file/README.md
deleted file mode 100644
index e05452b03a..0000000000
--- a/examples/browser-http-client-upload-file/README.md
+++ /dev/null
@@ -1,31 +0,0 @@
-# Upload file to IPFS via browser using js-ipfs-http-client
-
-> In this example, you will find a simple React app to upload a file to IPFS via the browser using js-ipfs-http-client and Webpack.
-
-## Setup
-
-As for any js-ipfs-http-client example, **you need a running IPFS daemon**, you learn how to do that here:
-
-- [Spawn a go-ipfs daemon](https://ipfs.io/docs/getting-started/)
-- [Spawn a js-ipfs daemon](https://github.com/ipfs/js-ipfs#usage)
-
-**Note:** If you load your app from a different domain than the one the daemon is running (most probably), you will need to set up CORS, see https://github.com/ipfs/js-ipfs-http-client#cors to learn how to do that.
-
-A quick (and dirty way to get it done) is:
-
-```bash
-> ipfs config --json API.HTTPHeaders.Access-Control-Allow-Origin "[\"*\"]"
-> ipfs config --json API.HTTPHeaders.Access-Control-Allow-Credentials "[\"true\"]"
-```
-
-## Run this example
-
-Once the daemon is on, run the following commands within this folder:
-
-```bash
-> npm install
-> npm start
-```
-After uploading a file (left screen), and opening the uploaded file (right screen), you should see something like:
-
-> 
diff --git a/examples/browser-http-client-upload-file/index.html b/examples/browser-http-client-upload-file/index.html
deleted file mode 100644
index 172aecc6ed..0000000000
--- a/examples/browser-http-client-upload-file/index.html
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
- Sample App
-
-
-
-
-
-
-
diff --git a/examples/browser-http-client-upload-file/package.json b/examples/browser-http-client-upload-file/package.json
deleted file mode 100644
index 9d2e4123f0..0000000000
--- a/examples/browser-http-client-upload-file/package.json
+++ /dev/null
@@ -1,31 +0,0 @@
-{
- "name": "example-http-client-upload-file-via-browser",
- "version": "1.0.0",
- "description": "Upload file to IPFS via browser using js-ipfs-http-client with Webpack",
- "private": true,
- "scripts": {
- "clean": "rimraf ./dist ./.cache ./.parcel-cache",
- "build": "parcel build index.html --no-scope-hoist",
- "start": "parcel index.html",
- "test": "test-ipfs-example"
- },
- "author": "Harlan T Wood ",
- "contributors": [
- "Victor Bjelkholm "
- ],
- "license": "MIT",
- "dependencies": {
- "ipfs-http-client": "^50.1.1"
- },
- "devDependencies": {
- "ipfs": "^0.55.3",
- "parcel": "2.0.0-beta.2",
- "react": "^17.0.2",
- "react-dom": "^17.0.2",
- "rimraf": "^3.0.2",
- "test-ipfs-example": "^3.0.0"
- },
- "browserslist": [
- "last 2 versions and not dead and > 2%"
- ]
-}
diff --git a/examples/browser-http-client-upload-file/screenshot.png b/examples/browser-http-client-upload-file/screenshot.png
deleted file mode 100644
index 09666e5160..0000000000
Binary files a/examples/browser-http-client-upload-file/screenshot.png and /dev/null differ
diff --git a/examples/browser-http-client-upload-file/src/App.js b/examples/browser-http-client-upload-file/src/App.js
deleted file mode 100644
index 852d963830..0000000000
--- a/examples/browser-http-client-upload-file/src/App.js
+++ /dev/null
@@ -1,109 +0,0 @@
-/* eslint-disable no-console */
-'use strict'
-
-const React = require('react')
-const { create: ipfsHttpClient } = require('ipfs-http-client')
-
-class App extends React.Component {
- constructor () {
- super()
- this.state = {
- added_file_hash: null
- }
-
- // bind methods
- this.captureFile = this.captureFile.bind(this)
- this.saveToIpfs = this.saveToIpfs.bind(this)
- this.handleSubmit = this.handleSubmit.bind(this)
- this.connect = this.connect.bind(this)
- this.multiaddr = React.createRef()
- }
-
- captureFile (event) {
- event.stopPropagation()
- event.preventDefault()
- if (document.getElementById('keep-filename').checked) {
- this.saveToIpfsWithFilename(event.target.files)
- } else {
- this.saveToIpfs(event.target.files)
- }
- }
-
- // Example #1
- // Add file to IPFS and return a CID
- async saveToIpfs ([ file ]) {
- try {
- const added = await this.state.ipfs.add(
- file,
- {
- progress: (prog) => console.log(`received: ${prog}`)
- }
- )
- console.log(added)
- this.setState({ added_file_hash: added.cid.toString() })
- } catch (err) {
- console.error(err)
- }
- }
-
- // Example #2
- // Add file to IPFS and wrap it in a directory to keep the original filename
- async saveToIpfsWithFilename ([ file ]) {
- const fileDetails = {
- path: file.name,
- content: file
- }
- const options = {
- wrapWithDirectory: true,
- progress: (prog) => console.log(`received: ${prog}`)
- }
-
- try {
- const added = await this.state.ipfs.add(fileDetails, options)
- console.log(added)
- this.setState({ added_file_hash: added.cid.toString() })
- } catch (err) {
- console.error(err)
- }
- }
-
- handleSubmit (event) {
- event.preventDefault()
- }
-
- async connect () {
- this.setState({
- ipfs: ipfsHttpClient(this.multiaddr.current.value)
- })
- }
-
- render () {
- if (this.state.ipfs) {
- return (
-
- )
- }
-
- return (
-
-
Enter the multiaddr for an IPFS node HTTP API
-
-
- )
- }
-}
-module.exports = App
diff --git a/examples/browser-http-client-upload-file/src/index.js b/examples/browser-http-client-upload-file/src/index.js
deleted file mode 100644
index 2bd77c1df2..0000000000
--- a/examples/browser-http-client-upload-file/src/index.js
+++ /dev/null
@@ -1,7 +0,0 @@
-/* eslint-disable no-unused-vars */
-'use strict'
-const React = require('react')
-const ReactDOM = require('react-dom')
-const App = require('./App')
-
-ReactDOM.render( , document.getElementById('root'))
diff --git a/examples/browser-http-client-upload-file/test.js b/examples/browser-http-client-upload-file/test.js
deleted file mode 100644
index 837c48b4ea..0000000000
--- a/examples/browser-http-client-upload-file/test.js
+++ /dev/null
@@ -1,101 +0,0 @@
-'use strict'
-
-const path = require('path')
-const execa = require('execa')
-const { createFactory } = require('ipfsd-ctl')
-const df = createFactory({
- ipfsHttpModule: require('ipfs-http-client'),
- ipfsBin: require.resolve('ipfs/src/cli.js')
-})
-const {
- startServer
-} = require('test-ipfs-example/utils')
-const pkg = require('./package.json')
-
-async function testUI (url, api, id) {
- const proc = execa(require.resolve('test-ipfs-example/node_modules/.bin/nightwatch'), ['--config', require.resolve('test-ipfs-example/nightwatch.conf.js'), path.join(__dirname, 'test.js')], {
- cwd: path.resolve(__dirname, '../'),
- env: {
- ...process.env,
- CI: true,
- IPFS_EXAMPLE_TEST_URL: url,
- IPFS_API_MULTIADDR: api,
- IPFS_ID: id
- },
- all: true
- })
- proc.all.on('data', (data) => {
- process.stdout.write(data)
- })
-
- await proc
-}
-
-async function runTest () {
- const app = await startServer(__dirname)
- const daemon = await df.spawn({
- type: 'js',
- test: true,
- ipfsOptions: {
- config: {
- Addresses: {
- API: '/ip4/127.0.0.1/tcp/0'
- },
- API: {
- HTTPHeaders: {
- 'Access-Control-Allow-Origin': [
- app.url
- ]
- }
- }
- }
- }
- })
-
- try {
- await testUI(app.url, daemon.apiAddr, daemon.api.peerId.id)
- } finally {
- await daemon.stop()
- await app.stop()
- }
-}
-
-module.exports = runTest
-
-module.exports[pkg.name] = function (browser) {
- browser
- .url(process.env.IPFS_EXAMPLE_TEST_URL)
- .waitForElementVisible('#connect-input')
- .clearValue('#connect-input')
- .setValue('#connect-input', process.env.IPFS_API_MULTIADDR)
- .pause(1000)
- .click('#connect-submit')
-
- // upload file
- browser
- .waitForElementVisible('#capture-media')
- .setValue('#input-file', require('path').resolve(__dirname + '/screenshot.png'))
- .pause(1000)
-
- browser.expect.element('#gateway-link').text.to.contain('QmWGmeq2kxsXqhrPhtTEhvck6PXucPf5153PSpZZRxvTwT')
-
- browser
- .url(process.env.IPFS_EXAMPLE_TEST_URL)
- .waitForElementVisible('#connect-input')
- .clearValue('#connect-input')
- .setValue('#connect-input', process.env.IPFS_API_MULTIADDR)
- .pause(1000)
- .click('#connect-submit')
-
- // upload file with file name
- browser
- .waitForElementVisible('#capture-media')
- .click('#keep-filename')
- .pause(1000)
- .setValue('#input-file', require('path').resolve(__dirname + '/screenshot.png'))
- .pause(1000)
-
- browser.expect.element('#gateway-link').text.to.contain('QmPJw5AYXfbqYXRX51zmdm7itSdt5tAWfGLSehwAhizLqp')
-
- browser.end()
-}
diff --git a/examples/browser-ipns-publish/.gitignore b/examples/browser-ipns-publish/.gitignore
deleted file mode 100644
index 46b007034c..0000000000
--- a/examples/browser-ipns-publish/.gitignore
+++ /dev/null
@@ -1,3 +0,0 @@
-bundle.js
-.cache
-/node_modules/
\ No newline at end of file
diff --git a/examples/browser-ipns-publish/README.md b/examples/browser-ipns-publish/README.md
deleted file mode 100644
index de26585fb0..0000000000
--- a/examples/browser-ipns-publish/README.md
+++ /dev/null
@@ -1,85 +0,0 @@
-# Publish to IPNS from the browser
-
-> Use ipns from the browser!
-
-This example is a demo web application that allows you to connect to a go-IPFS node, and publish your IPNS record to the go-DHT network but using your js-ipfs private key. We'll start two IPFS nodes; one in the browser and one on a go-Server. We'll use `ipfs-http-client` to connect to the go-Node to ensure our pubsub messages are getting through, and confirm the IPNS record resolves on the go-Node. We're aiming for something like this:
-
-```
- +-----------+ websocket +-----------+
- | +-------------------> |
- | js-ipfs | pubsub | go-ipfs |
- | <-------------------+ |
- +-----^-----+ +-----^-----+
- | |
- | IPFS in browser | HTTP API
- | |
-+-------------------------------------------------+
-| Browser |
-+-------------------------------------------------+
-| | | |
-| | | |
-| IPFS direct | | js-http-client |
-| a.k.a. ipfsNode | | a.k.a. ipfsAPI |
-| | | |
-+-------------------------------------------------+
-```
-
-## 1. Get started
-
-With Node.js and git installed, clone the repo and install the project dependencies:
-
-```sh
-git clone https://github.com/ipfs/js-ipfs.git
-cd examples/browser-ipns-publish
-npm install # Installs browser-pubsub app dependencies
-```
-
-Start the example application:
-
-```sh
-npm start
-```
-
-You should see something similar to the following in your terminal and the web app should now be available if you navigate to http://127.0.0.1:1234 using your browser:
-
-```sh
-Starting up http-server, serving ./
-Available on:
- http://127.0.0.1:1234
-```
-
-## 2. Start two IPFS nodes
-
-The first node is the js-ipfs made in the browser and the demo does that for you.
-
-The second is a go-ipfs node on a server. To get our IPNS record to the DHT, we'll need [a server running go-IPFS](https://blog.ipfs.io/22-run-ipfs-on-a-vps/) with the API enabled on port 5001.
-
-Right now the easiest way to do this is to install and start a `go-ipfs` node.
-
-### Install and start the Go IPFS node
-
-Head over to https://dist.ipfs.io/#go-ipfs and hit the "Download go-ipfs" button. Extract the archive and read the instructions to install.
-
-After installation:
-
-```sh
-ipfs init
-# Configure CORS to allow ipfs-http-client to access this IPFS node
-ipfs config --json API.HTTPHeaders.Access-Control-Allow-Origin "[\"*\"]"
-# Configure go-ipfs to listen on a websocket address
-npx json -I -f ~/.ipfs/config -e "this.Addresses.Swarm.push('/ip4/127.0.0.1/tcp/4003/ws')"
-# Start the IPFS node, enabling pubsub and IPNS over pubsub
-ipfs daemon --enable-pubsub-experiment --enable-namesys-pubsub
-```
-
-## 3. Open the demo in a browser and connect to the go-node
-
-Now, open up the demo in a browser window.
-
-In the "CONNECT TO GO-IPFS VIA API MULTIADDRESS" field enter `/ip4/YourServerIP/tcp/5001` (where `YourSeverIP` is your server's IP address or use `/dns4/yourdomain.com/tcp/5001`) and click connect. Once it connects, put your go-IPFS websocket address in the next field `/dns4/yourdomain.com/tcp/4003/wss/p2p/QmPeerIDHash` and hit the second "Connect" button.
-
-This connects the API to the go-Node and connects your js-IPFS node via websocket to the go-IPFS node so pubsub will work.
-
-You can choose whether to publish this record under the PeerId of the node that is running in the browser ('self') or choose to add a custom key to the IPFS keychain and publish under that instead. Either should work.
-
-Finally, enter `/ipfs/QmSomeHash` as the content you want to publish to IPNS. You should see the messages sent from the browser to the server appear in the logs below, ending with "Success, resolved" if it all worked.
diff --git a/examples/browser-ipns-publish/index.html b/examples/browser-ipns-publish/index.html
deleted file mode 100644
index ce7c5c9187..0000000000
--- a/examples/browser-ipns-publish/index.html
+++ /dev/null
@@ -1,209 +0,0 @@
-
-
-
- Publish to IPNS from the browser
-
-
-
-
-
-
-
-
-
- IPNS Publish from JS to Go Peer
-
-
-
-
- IPNS PUBLISH SET-UP STEPS
-
-
-
-
-
- Code repo for this demo
- on Github
-
-
- The idea is to publish from js-ipfs so you control your own
- private keys, but publish to go-ipfs to benefit from the DHT.
- Since the DHT in js-ipfs is still in the experimental phase, we need to use PubSub
- and have a go-ipfs node subscribed to that PubSub to get our IPNS
- record onto the DHT. In order to use PubSub between these two
- nodes, you'll need a websocket to connect them.
-
-
- To make this demo work, you're going to need:
-
-
-
- Once we can talk to go-IPFS and we're connected via Websocket,
- then we can publish in our browser node, have the pubsub push it
- to the go-IPFS server, and then check with the server that it's
- confirmed as published. Once it's on the go-IPFS node it should
- replicate throughout the rest of the DHT amongst the go-Nodes.
-
-
-
-
-
-
-
-
- 1. Connect to Go-IPFS via API MultiAddress
-
-
-
- Connect
-
-
-
-
- 2. Connect to Go-IPFS via Websocket MultiAddress (for PubSub to work)
-
-
-
- Connect
-
-
-
-
-
- 3. Choose a key:
-
-
-
-
-
- 4. IPFS hash to publish
-
-
-
- Publish to IPNS
-
-
-
-
-
-
-
-
diff --git a/examples/browser-ipns-publish/index.js b/examples/browser-ipns-publish/index.js
deleted file mode 100644
index e0e5ef72d2..0000000000
--- a/examples/browser-ipns-publish/index.js
+++ /dev/null
@@ -1,262 +0,0 @@
-"use strict";
-
-const IpfsHttpClient = require("ipfs-http-client");
-const ipns = require("ipns");
-const IPFS = require("ipfs");
-const pRetry = require("p-retry");
-const last = require("it-last");
-const cryptoKeys = require("human-crypto-keys"); // { getKeyPairFromSeed }
-const uint8ArrayToString = require('uint8arrays/to-string')
-const uint8ArrayFromString = require('uint8arrays/from-string')
-
-const { sleep, Logger, onEnterPress, catchAndLog } = require("./util");
-
-async function main() {
- const apiUrlInput = document.getElementById("api-url");
- const nodeConnectBtn = document.getElementById("node-connect");
-
- const peerAddrInput = document.getElementById("peer-addr");
- const wsConnectBtn = document.getElementById("peer-connect");
-
- const ipnsInput = document.getElementById("topic");
- const publishBtn = document.getElementById("publish");
-
- const namespace = "/record/";
- const retryOptions = {
- retries: 5,
- };
-
- let log = Logger(document.getElementById("console"));
- let sLog = Logger(document.getElementById("server-console"));
- let keyName = "self";
-
- let ipfsAPI; // remote server IPFS node
- let ipfsBrowser; // local browser IPFS node
- let peerId;
-
- // init local browser node right away
- log(`Browser IPFS getting ready...`);
- ipfsBrowser = await IPFS.create({
- pass: "01234567890123456789",
- EXPERIMENTAL: { ipnsPubsub: true },
- });
- const { id } = await ipfsBrowser.id();
- log(`Browser IPFS ready! Node id: ${id}`);
- document.getElementById("api-url").disabled = false;
- document.getElementById("node-connect").disabled = false;
-
- async function nodeConnect(url) {
- log(`Connecting to ${url}`);
- ipfsAPI = IpfsHttpClient(url);
- const { id, agentVersion } = await ipfsAPI.id();
- peerId = id;
- log(`Success! `);
- log(`Version ${agentVersion}`);
- log(`Peer ID ${id}`);
- document.getElementById("peer-addr").disabled = false;
- document.getElementById("peer-connect").disabled = false;
- }
-
- async function wsConnect(addr) {
- if (!addr) throw new Error("Missing peer multiaddr");
- if (!ipfsBrowser)
- throw new Error("Wait for the local IPFS node to start first");
- log(`Connecting to peer ${addr}`);
- await ipfsBrowser.swarm.connect(addr);
- log(`Success! `);
- log("Listing swarm peers...");
- await sleep();
- const peers = await ipfsBrowser.swarm.peers();
- peers.forEach((peer) => {
- //console.log(`peer: ${JSON.stringify(peer, null, 2)}`);
- const fullAddr = `${peer.addr}/ipfs/${peer.peer}`;
- log(
- `${fullAddr} `
- );
- });
- log(`(${peers.length} peers total)`);
- document.getElementById("topic").disabled = false;
- document.getElementById("publish").disabled = false;
- }
-
- // Wait until a peer subscribes a topic
- const waitForPeerToSubscribe = async (daemon, topic) => {
- await pRetry(async () => {
- const res = await daemon.pubsub.ls();
-
- if (!res || !res.length || !res.includes(topic)) {
- throw new Error("Could not find subscription");
- }
-
- return res[0];
- }, retryOptions);
- };
-
- // wait until a peer know about other peer to subscribe a topic
- const waitForNotificationOfSubscription = (daemon, topic, peerId) =>
- pRetry(async () => {
- const res = await daemon.pubsub.peers(topic);
-
- if (!res || !res.length || !res.includes(peerId)) {
- throw new Error("Could not find peer subscribing");
- }
- }, retryOptions);
-
- async function subs(node, topic, tLog) {
- tLog(`Subscribing to ${topic}`);
- await node.pubsub.subscribe(
- topic,
- (msg) => {
- const from = msg.from;
- const seqno = msg.seqno.toString("hex");
-
- tLog(
- `${new Date(
- Date.now()
- ).toLocaleTimeString()}\n Message ${seqno} from ${from}`
- );
-
- let regex = "/record/";
- if (topic.match(regex) ? topic.match(regex).length > 0 : false) {
- tLog(
- "\n#" +
- ipns.unmarshal(msg.data).sequence.toString() +
- ") Topic: " +
- msg.topicIDs[0].toString()
- );
- tLog("Value:\n" + ipns.unmarshal(msg.data).value.toString());
- } else {
- try {
- tLog(JSON.stringify(msg.data.toString(), null, 2));
- } catch (_) {
- tLog(msg.data.toString("hex"));
- }
- }
- }
- );
- }
-
- async function createKey(keyName) {
- return new Promise(async (resolve, reject) => {
- try {
- // quick and dirty key gen, don't do this in real life
- const key = await IPFS.multihashing.digest(
- uint8ArrayFromString(keyName + Math.random().toString(36).substring(2)),
- "sha2-256"
- );
- const keyPair = await cryptoKeys.getKeyPairFromSeed(key, "rsa");
-
- // put it on the browser IPNS keychain and name it
- await ipfsBrowser.key.import(keyName, keyPair.privateKey);
- // now this key can be used to publish to this ipns publicKey
- resolve(true);
- } catch (err) {
- console.log(`Error creating Key ${keyName}: \n ${err}`);
- reject(false);
- }
- });
- }
-
- async function publish(content) {
- if (!content) throw new Error("Missing ipns content to publish");
- if (!ipfsAPI) throw new Error("Connect to a go-server node first");
- if (!ipfsAPI.name.pubsub.state() || !ipfsBrowser.name.pubsub.state())
- throw new Error(
- "IPNS Pubsub must be enabled on bother peers, use --enable-namesys-pubsub"
- );
-
- log(`Publish to IPNS`); // subscribes the server to our IPNS topic
-
- let browserNode = await ipfsBrowser.id();
- let serverNode = await ipfsAPI.id();
-
- // get which key this will be publish under, self or an imported custom key
- keyName = document.querySelector('input[name="keyName"]:checked').value;
- let keys = { name: "self", id: browserNode.id }; // default init
-
- if (keyName != "self") {
- if (!(await ipfsBrowser.key.list()).find((k) => k.name == keyName))
- // skip if custom key exists already
- await createKey(keyName);
- let r = await ipfsBrowser.key.list();
- keys = r.find((k) => k.name == keyName);
- log(JSON.stringify(keys));
- }
-
- log(`Initial Resolve ${keys.id}`); // subscribes the server to our IPNS topic
- last(ipfsAPI.name.resolve(keys.id, { stream: false })); // save the pubsub topic to the server to make them listen
-
- // set up the topic from ipns key
- let b58 = await IPFS.multihash.fromB58String(keys.id);
- const ipnsKeys = ipns.getIdKeys(b58);
- const topic = `${namespace}${uint8ArrayToString(ipnsKeys.routingKey, 'base64url')}`;
-
- // subscribe and log on both nodes
- await subs(ipfsBrowser, topic, log); // browserLog
- await subs(ipfsAPI, topic, sLog); // serverLog
-
- // confirm they are subscribed
- await waitForPeerToSubscribe(ipfsAPI, topic); // confirm topic is on THEIR list // API
- await waitForNotificationOfSubscription(ipfsBrowser, topic, serverNode.id); // confirm they are on OUR list
-
- let remList = await ipfsAPI.pubsub.ls(); // API
- if (!remList.includes(topic))
- sLog(`[Fail] !Pubsub.ls ${topic} `);
- else sLog(`[Pass] Pubsub.ls`);
-
- let remListSubs = await ipfsAPI.name.pubsub.subs(); // API
- if (!remListSubs.includes(`/ipns/${keys.id}`))
- sLog(`[Fail] !Name.Pubsub.subs ${keys.id} `);
- else sLog(`[Pass] Name.Pubsub.subs`);
-
- // publish will send a pubsub msg to the server to update their ipns record
- log(`Publishing ${content} to ${keys.name} /ipns/${keys.id}`);
- const results = await ipfsBrowser.name.publish(content, {
- resolve: false,
- key: keyName,
- });
- log(`Published ${results.name} to ${results.value}`); //
-
- log(`Try resolve ${keys.id} on server through API`);
-
- let name = await last(
- ipfsAPI.name.resolve(keys.id, {
- stream: false,
- })
- );
- log(`Resolved: ${name}`);
- if (name == content) {
- log(`IPNS Publish Success! `);
- log(
- `Look at that! /ipns/${keys.id} resolves to ${content} `
- );
- } else {
- log(
- `Error, resolve did not match ${name} !== ${content} `
- );
- }
- }
-
- const onNodeConnectClick = catchAndLog(
- () => nodeConnect(apiUrlInput.value),
- log
- );
-
- apiUrlInput.addEventListener("keydown", onEnterPress(onNodeConnectClick));
- nodeConnectBtn.addEventListener("click", onNodeConnectClick);
-
- const onwsConnectClick = catchAndLog(
- () => wsConnect(peerAddrInput.value),
- log
- );
- peerAddrInput.addEventListener("keydown", onEnterPress(onwsConnectClick));
- wsConnectBtn.addEventListener("click", onwsConnectClick);
-
- const onPublishClick = catchAndLog(() => publish(ipnsInput.value), log);
- ipnsInput.addEventListener("keydown", onEnterPress(onPublishClick));
- publishBtn.addEventListener("click", onPublishClick);
-}
-
-main();
diff --git a/examples/browser-ipns-publish/package.json b/examples/browser-ipns-publish/package.json
deleted file mode 100644
index 681722aaa3..0000000000
--- a/examples/browser-ipns-publish/package.json
+++ /dev/null
@@ -1,45 +0,0 @@
-{
- "name": "browser-ipns-publish",
- "version": "1.0.0",
- "description": "An example demonstrating publishing to IPNS in the browser",
- "private": true,
- "main": "index.js",
- "scripts": {
- "clean": "rimraf ./dist ./.cache ./.parcel-cache",
- "build": "parcel build index.html --no-scope-hoist",
- "start": "parcel index.html",
- "test": "test-ipfs-example"
- },
- "author": "Doug Anderson",
- "license": "MIT",
- "dependencies": {
- "human-crypto-keys": "^0.1.4",
- "ipfs": "^0.55.3",
- "ipfs-http-client": "^50.1.1",
- "ipfs-utils": "^8.1.2",
- "ipns": "^0.11.0",
- "it-last": "^1.0.4",
- "p-retry": "^4.2.0",
- "uint8arrays": "^2.1.3"
- },
- "browserslist": [
- "last 2 versions and not dead and > 2%"
- ],
- "devDependencies": {
- "delay": "^5.0.0",
- "execa": "^5.0.0",
- "ipfsd-ctl": "^8.0.1",
- "go-ipfs": "0.8.0",
- "parcel": "2.0.0-beta.2",
- "path": "^0.12.7",
- "test-ipfs-example": "^3.0.0"
- },
- "repository": {
- "type": "git",
- "url": "https://github.com/ipfs/js-ipfs/examples"
- },
- "keywords": [
- "IPNS",
- "Publish"
- ]
-}
diff --git a/examples/browser-ipns-publish/test.js b/examples/browser-ipns-publish/test.js
deleted file mode 100644
index 2b6dece1ff..0000000000
--- a/examples/browser-ipns-publish/test.js
+++ /dev/null
@@ -1,138 +0,0 @@
-"use strict";
-
-const path = require("path");
-const execa = require("execa");
-const { createFactory } = require("ipfsd-ctl");
-const df = createFactory({
- ipfsHttpModule: require("ipfs-http-client"),
- ipfsBin: require("go-ipfs").path(),
- args: [
- "--enable-pubsub-experiment",
- '--enable-namesys-pubsub'
- ],
- test: true
-});
-const { startServer } = require("test-ipfs-example/utils");
-const pkg = require("./package.json");
-
-async function testUI(url, apiAddr, peerAddr, topic) {
- const proc = execa(
- require.resolve("test-ipfs-example/node_modules/.bin/nightwatch"),
- [
- "--config",
- require.resolve("test-ipfs-example/nightwatch.conf.js"),
- path.join(__dirname, "test.js"),
- ],
- {
- cwd: path.resolve(__dirname, "../"),
- env: {
- ...process.env,
- CI: true,
- IPFS_EXAMPLE_TEST_URL: url,
- IPFS_API_ADDRESS: apiAddr,
- IPFS_PEER_ADDRESS: peerAddr,
- IPFS_TOPIC: topic,
- },
- all: true,
- }
- );
- proc.all.on("data", (data) => {
- process.stdout.write(data);
- });
-
- await proc;
-}
-
-async function runTest() {
- const app = await startServer(__dirname);
- const go = await df.spawn({
- ipfsOptions: {
- config: {
- Addresses: {
- API: "/ip4/127.0.0.1/tcp/0",
- Swarm: [
- "/ip4/127.0.0.1/tcp/0/ws"
- ]
- },
- API: {
- HTTPHeaders: {
- "Access-Control-Allow-Origin": [app.url],
- },
- },
- },
- },
- });
-
- const go2 = await df.spawn();
- await go.api.swarm.connect(go2.api.peerId.addresses[0]);
-
- const { cid } = await go.api.add(`Some data ${Date.now()}`)
- const topic = `/ipfs/${cid}`;
-
- const peerAddr = go.api.peerId.addresses
- .map(addr => addr.toString())
- .filter(addr => addr.includes("/ws/p2p/"))
- .pop()
-
- try {
- await testUI(
- app.url,
- go.apiAddr,
- peerAddr,
- topic
- );
- } finally {
- await app.stop();
- await df.clean();
- }
-}
-
-module.exports = runTest;
-
-module.exports[pkg.name] = function (browser) {
- const apiSelector = "#api-url:enabled";
-
- // connect to the API
- browser
- .url(process.env.IPFS_EXAMPLE_TEST_URL)
- .waitForElementVisible(apiSelector)
- .clearValue(apiSelector)
- .setValue(apiSelector, process.env.IPFS_API_ADDRESS)
- .pause(1000)
- .click("#node-connect");
-
- browser.expect
- .element("#console")
- .text.to.contain(`Connecting to ${process.env.IPFS_API_ADDRESS}\nSuccess!`);
-
- // connect via websocket
- const peerAddrSelector = "#peer-addr:enabled";
- browser
- .waitForElementVisible(peerAddrSelector)
- .clearValue(peerAddrSelector)
- .setValue(peerAddrSelector, process.env.IPFS_PEER_ADDRESS)
- .pause(1000)
- .click("#peer-connect");
-
- browser.expect
- .element("#console")
- .text.to.contain(
- `Connecting to peer ${process.env.IPFS_PEER_ADDRESS}\nSuccess!`
- );
-
- // publish to IPNS
- const publishSelector = "#topic:enabled";
- browser
- .waitForElementVisible(publishSelector)
- .clearValue(publishSelector)
- .setValue(publishSelector, process.env.IPFS_TOPIC)
- .pause(1000)
- .click("#publish");
-
- browser.expect.element("#console").text.to.contain('Publish to IPNS');
- browser.expect.element("#console").text.to.contain('Initial Resolve');
- browser.expect.element("#console").text.to.contain('Published');
- browser.expect.element("#console").text.to.contain(`IPNS Publish Success!`);
-
- browser.end();
-};
diff --git a/examples/browser-ipns-publish/util.js b/examples/browser-ipns-publish/util.js
deleted file mode 100644
index e6aada61f8..0000000000
--- a/examples/browser-ipns-publish/util.js
+++ /dev/null
@@ -1,31 +0,0 @@
-exports.sleep = (ms = 1000) => new Promise(resolve => setTimeout(resolve, ms))
-
-exports.Logger = outEl => {
- outEl.innerHTML = ''
- return message => {
- const container = document.createElement('div')
- container.innerHTML = message
- outEl.appendChild(container)
- outEl.scrollTop = outEl.scrollHeight
- }
-}
-
-exports.onEnterPress = fn => {
- return e => {
- if (event.which == 13 || event.keyCode == 13) {
- e.preventDefault()
- fn()
- }
- }
-}
-
-exports.catchAndLog = (fn, log) => {
- return async (...args) => {
- try {
- await fn(...args)
- } catch (err) {
- console.error(err)
- log(`${err.message} `)
- }
- }
-}
diff --git a/examples/browser-mfs/CHANGELOG.md b/examples/browser-mfs/CHANGELOG.md
deleted file mode 100644
index 6e4754a525..0000000000
--- a/examples/browser-mfs/CHANGELOG.md
+++ /dev/null
@@ -1,19 +0,0 @@
-# Change Log
-
-All notable changes to this project will be documented in this file.
-See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
-
-## [1.0.2](https://github.com/ipfs/js-ipfs/compare/example-browser-mfs@1.0.1...example-browser-mfs@1.0.2) (2020-04-08)
-
-**Note:** Version bump only for package example-browser-mfs
-
-
-
-
-
-## 1.0.1 (2020-03-31)
-
-
-### Bug Fixes
-
-* browser-mfs example ([#2089](https://github.com/ipfs/js-ipfs/issues/2089)) ([e7d6d3a](https://github.com/ipfs/js-ipfs/commit/e7d6d3a8462e9692530bcd037a4dcd7a236eeae2))
diff --git a/examples/browser-mfs/README.md b/examples/browser-mfs/README.md
deleted file mode 100644
index 035b8ed276..0000000000
--- a/examples/browser-mfs/README.md
+++ /dev/null
@@ -1,36 +0,0 @@
-# Mutable File System examples
-
-The MFS is a file system abstraction built on top of IPFS. It supports all the operations you would expect such as creating directories, adding files to them, renaming, coping, deleting, etc.
-
-This demo allows you to upload files from your computer and use them to explore MFS methods from within your web browser.
-
-
-
-
-
-## Before you start
-
-First clone this repo, install dependencies in the project root and build the project.
-
-```console
-$ git clone https://github.com/ipfs/js-ipfs.git
-$ cd js-ipfs
-$ npm install
-$ npm run build
-```
-
-## Running the example
-
-Navigate into this directory:
-
-```
-$ cd js-ipfs/examples/browser-mfs
-```
-
-In this directory run:
-
-```
-$ npm start
-```
-
-Then open [http://localhost:8888](http://localhost:8888) in your browser.
diff --git a/examples/browser-mfs/filetree.js b/examples/browser-mfs/filetree.js
deleted file mode 100644
index e0ac293043..0000000000
--- a/examples/browser-mfs/filetree.js
+++ /dev/null
@@ -1,74 +0,0 @@
-'use strict'
-
-const {
- createNode
-} = require('./utils')
-
-const FILE_TYPES = {
- FILE: 'file',
- DIRECTORY: 'directory'
-}
-
-let selected = {}
-
-const getSelected = () => {
- return Object.values(selected)
-}
-
-const loadFiles = async (ipfs, path) => {
- const output = {}
- path = path.replace(/\/\/+/g, '/')
-
- for await (const entry of ipfs.files.ls(path)) {
- output[entry.name] = entry
-
- if (entry.type === FILE_TYPES.DIRECTORY) {
- entry.contents = await loadFiles(ipfs, `${path}/${entry.name}`)
- }
- }
-
- return output
-}
-
-const listFiles = (parent, files, prefix) => {
- const fileNames = Object.keys(files)
-
- fileNames.forEach((name, index) => {
- const file = files[name]
- const lastFile = index === fileNames.length - 1
- const listIcon = lastFile ? '└── ' : '├── '
- const listing = `${prefix}${listIcon}${name}`
-
- if (file.type === FILE_TYPES.DIRECTORY) {
- parent.appendChild(createNode('pre', `${listing}/`))
- let descender = '|'
- let directoryPrefix = `${prefix}${descender} `
-
- if (lastFile) {
- directoryPrefix = `${prefix} `
- }
-
- listFiles(parent, file.contents, directoryPrefix)
- } else {
- parent.appendChild(createNode('pre', listing))
- }
- })
-}
-
-const updateTree = async (ipfs) => {
- const files = await loadFiles(ipfs, '/')
- const container = document.querySelector('#files')
-
- while (container.firstChild) {
- container.removeChild(container.firstChild)
- }
-
- container.appendChild(createNode('pre', '/'))
-
- listFiles(container, files, '')
-}
-
-module.exports = {
- getSelected,
- updateTree
-}
diff --git a/examples/browser-mfs/forms.js b/examples/browser-mfs/forms.js
deleted file mode 100644
index 1af7552dbd..0000000000
--- a/examples/browser-mfs/forms.js
+++ /dev/null
@@ -1,178 +0,0 @@
-'use strict'
-
-const modalScreen = document.getElementById('modal-screen')
-
-modalScreen.onclick = (event) => {
- if (event.target === modalScreen) {
- hideForms()
- }
-}
-
-const forms = {
- mkdir: document.getElementById('form-mkdir'),
- mv: document.getElementById('form-mv'),
- cp: document.getElementById('form-cp'),
- rm: document.getElementById('form-rm'),
- stat: document.getElementById('form-stat'),
- read: document.getElementById('form-read')
-}
-
-const getValue = (id) => {
- const element = document.getElementById(id)
-
- if (element.type === 'checkbox') {
- return Boolean(element.checked)
- }
-
- if (element.type === 'number') {
- const result = parseInt(element.value.trim())
-
- return isNaN(result) ? undefined : result
- }
-
- return element.value.trim()
-}
-
-const hideForms = () => {
- modalScreen.style.display = 'none'
-
- Object.values(forms)
- .forEach(form => {
- form.style.display = 'none'
- })
-}
-
-const showForm = (form) => {
- return (event) => {
- event.preventDefault()
-
- modalScreen.style.display = 'block'
- form.style.display = 'block'
- }
-}
-
-const mkdirForm = (onMkdir) => {
- const button = document.getElementById('button-mkdir')
- const submit = document.getElementById('button-form-mkdir-submit')
-
- button.onclick = showForm(forms.mkdir)
- submit.onclick = () => {
- hideForms()
-
- onMkdir(
- getValue('form-mkdir-path'),
- getValue('form-mkdir-parents'),
- getValue('form-mkdir-format'),
- getValue('form-mkdir-hashalg'),
- getValue('form-mkdir-flush')
- )
- }
-
- button.disabled = false
-}
-
-const mvForm = (onMv) => {
- const button = document.getElementById('button-mv')
- const submit = document.getElementById('button-form-mv-submit')
-
- button.onclick = showForm(forms.mv)
- submit.onclick = () => {
- hideForms()
-
- onMv(
- [getValue('form-mv-path')],
- getValue('form-mv-dest'),
- getValue('form-mv-parents'),
- getValue('form-mv-format'),
- getValue('form-mv-hashalg'),
- getValue('form-mv-flush')
- )
- }
-
- button.disabled = false
-}
-
-const cpForm = (onCp) => {
- const button = document.getElementById('button-cp')
- const submit = document.getElementById('button-form-cp-submit')
-
- button.onclick = showForm(forms.cp)
- submit.onclick = () => {
- hideForms()
-
- onCp(
- [getValue('form-cp-path')],
- getValue('form-cp-dest'),
- getValue('form-cp-parents'),
- getValue('form-cp-format'),
- getValue('form-cp-hashalg'),
- getValue('form-cp-flush')
- )
- }
-
- button.disabled = false
-}
-
-const rmForm = (onRm) => {
- const button = document.getElementById('button-rm')
- const submit = document.getElementById('button-form-rm-submit')
-
- button.onclick = showForm(forms.rm)
- submit.onclick = () => {
- hideForms()
-
- onRm(
- [getValue('form-rm-path')],
- getValue('form-rm-recursive')
- )
- }
-
- button.disabled = false
-}
-
-const statForm = (onStat) => {
- const button = document.getElementById('button-stat')
- const submit = document.getElementById('button-form-stat-submit')
-
- button.onclick = showForm(forms.stat)
- submit.onclick = () => {
- hideForms()
-
- onStat(
- getValue('form-stat-path'),
- getValue('form-stat-hash'),
- getValue('form-stat-size'),
- getValue('form-stat-withlocal')
- )
- }
-
- button.disabled = false
-}
-
-const readForm = (onRead) => {
- const button = document.getElementById('button-read')
- const submit = document.getElementById('button-form-read-submit')
-
- button.onclick = showForm(forms.read)
- submit.onclick = () => {
- hideForms()
-
- onRead(
- getValue('form-read-path'),
- getValue('form-read-offset'),
- getValue('form-read-length')
- )
- }
-
- button.disabled = false
-}
-
-module.exports = {
- mkdirForm,
- mvForm,
- rmForm,
- cpForm,
- statForm,
- readForm,
- hideForms
-}
diff --git a/examples/browser-mfs/index.html b/examples/browser-mfs/index.html
deleted file mode 100644
index 52cb4c8ebf..0000000000
--- a/examples/browser-mfs/index.html
+++ /dev/null
@@ -1,239 +0,0 @@
-
-
-
-
- <%= htmlWebpackPlugin.options.title %>
-
-
-
-
-
- cp
- mkdir
- mv
- read
- rm
- stat
-
-
-
-
-
-
-
-
mkdir
-
- path:
-
-
- format:
-
-
- hashAlg:
-
-
- parents:
-
-
- flush:
-
-
- Go!
-
-
-
-
cp
-
- path:
-
-
- destination:
-
-
- format:
-
-
- hashAlg:
-
-
- parents:
-
-
- flush:
-
-
- Go!
-
-
-
-
mv
-
- path:
-
-
- destination:
-
-
- format:
-
-
- hashAlg:
-
-
- parents:
-
-
- flush:
-
-
- Go!
-
-
-
-
rm
-
- path:
-
-
- recursive:
-
-
- Go!
-
-
-
-
stat
-
- path:
-
-
- hash:
-
-
- size:
-
-
- withLocal:
-
-
- Go!
-
-
-
-
read
-
- path:
-
-
- offset:
-
-
- length:
-
-
- Go!
-
-
-
diff --git a/examples/browser-mfs/index.js b/examples/browser-mfs/index.js
deleted file mode 100644
index c08794abc3..0000000000
--- a/examples/browser-mfs/index.js
+++ /dev/null
@@ -1,179 +0,0 @@
-'use strict'
-
-/* eslint-env browser */
-
-const IPFS = require('ipfs')
-const {
- dragDrop,
- log,
- bufferToArrayBuffer
-} = require('./utils')
-const {
- updateTree
-} = require('./filetree')
-const {
- mvForm,
- mkdirForm,
- rmForm,
- cpForm,
- statForm,
- readForm,
- hideForms
-} = require('./forms')
-const mime = require('mime-sniffer')
-
-document.addEventListener('DOMContentLoaded', async () => {
- const ipfs = await IPFS.create({
- repo: `ipfs-${Math.random()}`
- })
-
- hideForms()
-
- log('IPFS: Initialising')
-
- // Allow adding files to IPFS via drag and drop
- dragDrop(async (files) => {
- /* eslint-disable-next-line no-alert */
- const destinationDirectory = prompt(`Dropped ${files.length} file${files.length > 1 ? 's' : ''}, please enter a directory to store them in`, '/')
-
- if (!destinationDirectory || !`${destinationDirectory}`.trim()) {
- return
- }
-
- await Promise.all(
- files.map(file => {
- const path = `${destinationDirectory}/${file.name}`.replace(/\/\/+/g, '/')
- log(`ipfs.files.write('${path}', , { create: true, parents: true })`)
- return ipfs.files.write(path, file, {
- create: true,
- parents: true
- })
- .catch(error => log(error))
- })
- )
-
- updateTree(ipfs)
- })
-
- mkdirForm(async (path, parents, format, hashAlg, flush) => {
- log(`ipfs.files.mkdir('${path}', ${JSON.stringify({
- parents,
- format,
- hashAlg,
- flush
- }, null, 2)})`)
-
- await ipfs.files.mkdir(path, {
- parents,
- format,
- hashAlg,
- flush
- })
- .catch(error => log(error))
-
- updateTree(ipfs)
- })
-
- mvForm(async (paths, destination, parents, format, hashAlg, flush) => {
- log(`ipfs.files.mv(${paths.map(path => `'${path}'`).join(', ')}, ${JSON.stringify({
- parents,
- format,
- hashAlg,
- flush
- }, null, 2)})`)
-
- await ipfs.files.mv.apply(null, paths.concat(destination, {
- parents,
- format,
- hashAlg,
- flush
- }))
- .catch(error => log(error))
-
- updateTree(ipfs)
- })
-
- rmForm(async (paths, recursive) => {
- log(`ipfs.files.rm(${paths.map(path => `'${path}'`).join(', ')}, ${JSON.stringify({
- recursive
- }, null, 2)})`)
-
- await ipfs.files.rm.apply(null, paths.concat({
- recursive
- }))
- .catch(error => log(error))
-
- updateTree(ipfs)
- })
-
- cpForm(async (paths, destination, parents, format, hashAlg, flush) => {
- log(`ipfs.files.cp(${paths.map(path => `'${path}'`).join(', ')}, '${destination}', ${JSON.stringify({
- parents,
- format,
- hashAlg,
- flush
- }, null, 2)})`)
-
- await ipfs.files.cp.apply(null, paths.concat(destination, {
- parents,
- format,
- hashAlg,
- flush
- }))
- .catch(error => log(error))
-
- updateTree(ipfs)
- })
-
- statForm(async (path, hash, size, withLocal) => {
- log(`ipfs.files.stat('${path}', ${JSON.stringify({
- hash,
- size,
- withLocal
- }, null, 2)})`)
-
- await ipfs.files.stat(path, {
- hash,
- size,
- withLocal
- })
- .then((stats) => log(stats))
- .catch(error => log(error))
- })
-
- readForm(async (path, offset, length) => {
- log(`ipfs.files.read('${path}', ${JSON.stringify({
- offset,
- length
- }, null, 2)})`)
-
- await ipfs.files.read(path, {
- offset,
- length
- })
- .then((buffer) => {
- mime.lookup(buffer, (error, result) => {
- // will cause file to be downloaded if we don't know what it is
- let mimeType = 'application/octet-stream'
-
- if (!error) {
- mimeType = result.mime
- }
-
- const data = bufferToArrayBuffer(buffer)
- const file = new Blob([data], {
- type: mimeType
- })
- const fileURL = URL.createObjectURL(file)
- window.open(fileURL)
- })
- })
- .catch(error => log(error))
- })
-
- log('IPFS: Ready')
- log('IPFS: Drop some files into this window to get started')
- log('')
-
- updateTree(ipfs)
-})
diff --git a/examples/browser-mfs/package.json b/examples/browser-mfs/package.json
deleted file mode 100644
index e619189b72..0000000000
--- a/examples/browser-mfs/package.json
+++ /dev/null
@@ -1,28 +0,0 @@
-{
- "name": "example-browser-mfs",
- "description": "",
- "version": "1.0.2",
- "main": "index.js",
- "private": true,
- "scripts": {
- "clean": "rimraf ./dist",
- "build": "webpack",
- "start": "npm run build && http-server dist -a 127.0.0.1 -p 8888",
- "test": "test-ipfs-example"
- },
- "author": "",
- "license": "ISC",
- "devDependencies": {
- "html-webpack-plugin": "^5.3.1",
- "http-server": "^0.12.3",
- "node-polyfill-webpack-plugin": "^1.0.3",
- "rimraf": "^3.0.2",
- "test-ipfs-example": "^3.0.0",
- "webpack": "^5.28.0",
- "webpack-cli": "^4.5.0"
- },
- "dependencies": {
- "ipfs": "^0.55.3",
- "mime-sniffer": "~0.0.3"
- }
-}
diff --git a/examples/browser-mfs/screenshot_1.png b/examples/browser-mfs/screenshot_1.png
deleted file mode 100644
index bf8a6ca226..0000000000
Binary files a/examples/browser-mfs/screenshot_1.png and /dev/null differ
diff --git a/examples/browser-mfs/screenshot_2.png b/examples/browser-mfs/screenshot_2.png
deleted file mode 100644
index e2e41a33bb..0000000000
Binary files a/examples/browser-mfs/screenshot_2.png and /dev/null differ
diff --git a/examples/browser-mfs/test.js b/examples/browser-mfs/test.js
deleted file mode 100644
index 59f88a0460..0000000000
--- a/examples/browser-mfs/test.js
+++ /dev/null
@@ -1,47 +0,0 @@
-'use strict'
-
-const pkg = require('./package.json')
-
-module.exports = {
- [pkg.name]: function (browser) {
- browser
- .url(process.env.IPFS_EXAMPLE_TEST_URL)
- .waitForElementNotVisible('#modal-screen')
- .waitForElementVisible('#log')
-
- browser.expect.element('#log').text.to.contain('IPFS: Drop some files into this window to get started')
-
- browser.waitForElementVisible('#button-mkdir')
- .click('#button-mkdir')
- .waitForElementVisible('#form-mkdir-path')
- .clearValue('#form-mkdir-path')
- .setValue('#form-mkdir-path', '/folder')
- .click('#button-form-mkdir-submit')
-
- browser.expect.element('#files').text.to.contain('folder/')
-
- browser.click('#button-cp')
- .waitForElementVisible('#form-cp-path')
- .clearValue('#form-cp-path')
- .setValue('#form-cp-path', '/folder')
- .clearValue('#form-cp-dest')
- .setValue('#form-cp-dest', '/folder-copy')
- .click('#button-form-cp-submit')
-
- browser.expect.element('#files').text.to.contain('folder-copy/')
-
- browser.click('#button-mv')
- .waitForElementVisible('#form-mv-path')
- .clearValue('#form-mv-path')
- .setValue('#form-mv-path', '/folder')
- .clearValue('#form-mv-dest')
- .setValue('#form-mv-dest', '/folder-other')
- .click('#button-form-mv-submit')
-
- browser.expect.element('#files').text.to.not.contain('folder/')
- browser.expect.element('#files').text.to.contain('folder-other/')
-
- browser.end()
- }
-}
-
diff --git a/examples/browser-mfs/utils.js b/examples/browser-mfs/utils.js
deleted file mode 100644
index 5499a06792..0000000000
--- a/examples/browser-mfs/utils.js
+++ /dev/null
@@ -1,92 +0,0 @@
-'use strict'
-
-const createNode = (type, content, attrbutes) => {
- attrbutes = attrbutes || {}
-
- const node = document.createElement(type)
- node.innerText = content
-
- Object.keys(attrbutes).forEach(attrbute => {
- if (attrbute === 'className') {
- node.className = attrbutes[attrbute]
-
- return
- }
-
- node.setAttribute(attrbute, attrbutes[attrbute])
- })
-
- return node
-}
-
-const log = (line) => {
- const output = document.querySelector('#log')
- let message
- let className = ''
-
- if (line instanceof Error) {
- className = 'error'
- message = `Error: ${line.message}`
- } else if (typeof line === 'string') {
- message = line
- } else {
- className = 'output'
- message = JSON.stringify(line, null, 2)
- }
-
- if (!message) {
- return
- }
-
- const node = createNode('p', message, {
- className
- })
- output.appendChild(node)
- output.scrollTop = output.offsetHeight
-
- return node
-}
-
-const dragDrop = (onFiles) => {
- const container = document.querySelector('#container')
-
- container.ondragover = (event) => {
- container.className = 'drag-over'
- event.preventDefault()
- }
-
- container.ondragleave = () => {
- container.className = ''
- }
-
- container.ondrop = (event) => {
- container.className = ''
- event.preventDefault()
-
- const files = Array.from(event.dataTransfer.items)
- .map(item => item.getAsFile())
- .filter(item => Boolean(item))
-
- if (files.length) {
- onFiles(files)
- }
- }
-}
-
-const bufferToArrayBuffer = (buffer) => {
- const ab = new ArrayBuffer(buffer.length)
- const view = new Uint8Array(ab)
-
- for (let i = 0; i < buffer.length; ++i) {
- view[i] = buffer[i]
- }
-
- return ab
-}
-
-module.exports = {
- log,
- dragDrop,
- createNode,
- bufferToArrayBuffer
-}
diff --git a/examples/browser-mfs/webpack.config.js b/examples/browser-mfs/webpack.config.js
deleted file mode 100644
index 95c414f71a..0000000000
--- a/examples/browser-mfs/webpack.config.js
+++ /dev/null
@@ -1,33 +0,0 @@
-'use strict'
-
-const path = require('path')
-const webpack = require('webpack')
-const NodePolyfillPlugin = require('node-polyfill-webpack-plugin')
-const HtmlWebpackPlugin = require('html-webpack-plugin')
-
-module.exports = {
- devtool: 'eval',
- entry: [
- './index.js'
- ],
- output: {
- path: path.join(__dirname, 'dist'),
- filename: 'bundle.js'
- },
- plugins: [
- new HtmlWebpackPlugin({
- title: 'IPFS MFS example',
- template: 'index.html'
- }),
- // fixes Module not found: Error: Can't resolve 'stream' in '.../node_modules/nofilter/lib'
- new NodePolyfillPlugin(),
- // Note: stream-browserify has assumption about `Buffer` global in its
- // dependencies causing runtime errors. This is a workaround to provide
- // global `Buffer` until https://github.com/isaacs/core-util-is/issues/29
- // is fixed.
- new webpack.ProvidePlugin({
- Buffer: ['buffer', 'Buffer'],
- process: 'process/browser'
- })
- ]
-}
diff --git a/examples/browser-parceljs/CHANGELOG.md b/examples/browser-parceljs/CHANGELOG.md
deleted file mode 100644
index 3dff5b21f2..0000000000
--- a/examples/browser-parceljs/CHANGELOG.md
+++ /dev/null
@@ -1,16 +0,0 @@
-# Change Log
-
-All notable changes to this project will be documented in this file.
-See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
-
-## [1.0.2](https://github.com/ipfs/js-ipfs/compare/example-browser-parceljs@1.0.1...example-browser-parceljs@1.0.2) (2020-04-08)
-
-**Note:** Version bump only for package example-browser-parceljs
-
-
-
-
-
-## 1.0.1 (2020-03-31)
-
-**Note:** Version bump only for package example-browser-parceljs
diff --git a/examples/browser-parceljs/README.md b/examples/browser-parceljs/README.md
deleted file mode 100644
index ef016c0d2f..0000000000
--- a/examples/browser-parceljs/README.md
+++ /dev/null
@@ -1,48 +0,0 @@
-# Bundle js-ipfs with [Parcel.js](https://parceljs.org/)
-
-> In this example, you will find a boilerplate application that connects to
-IPFS using JS-IPFS and is bundled with [Parcel.js](https://parceljs.org/), so
-that you can follow it for creating Parcel.js bundled js-ipfs DApps.
-
-## Before you start
-
-First clone this repo, install dependencies in the project root and build the project.
-
-```console
-$ git clone https://github.com/ipfs/js-ipfs.git
-$ cd js-ipfs
-$ npm install
-$ npm run build
-```
-
-## Running the example
-
-1. Start your IPFS daemon of choice e.g. `ipfs daemon` (optional if you do not
-want to serve the example over IPFS)
-1. Open a new terminal
-1. `cd` into this folder
-
-## Running this example in development mode with auto-reloading
-
-1. `npm start`
-1. Open your browser at `http://localhost:1234`
-
-You should see the following:
-
-
-
-## Build and add to IPFS
-
-1. Clear the contents of `dist` if this is not the first time you are building
-e.g. `rm -r dist` on a unix system
-1. `npm run build`
-1. The production build of the site is now in the `dist` folder
-1. Add the folder to ipfs using your IPFS client of choice e.g.
-`ipfs add -r dist`
-
-The last hash output is the hash of the directory. This can be used to access
-this example served over IPFS and will be accessible by a public gateway:
-
-> https://ipfs.io/ipfs//
-
-
diff --git a/examples/browser-parceljs/img/1.png b/examples/browser-parceljs/img/1.png
deleted file mode 100644
index 733256c37f..0000000000
Binary files a/examples/browser-parceljs/img/1.png and /dev/null differ
diff --git a/examples/browser-parceljs/package.json b/examples/browser-parceljs/package.json
deleted file mode 100644
index 03ebf6debf..0000000000
--- a/examples/browser-parceljs/package.json
+++ /dev/null
@@ -1,29 +0,0 @@
-{
- "name": "example-browser-parceljs",
- "description": "",
- "version": "1.0.2",
- "main": "dist/index.html",
- "private": true,
- "browserslist": [
- "last 2 versions and not dead and > 2%"
- ],
- "scripts": {
- "clean": "rimraf ./dist ./.cache ./.parcel-cache",
- "lint": "standard public/**/*.js",
- "start": "parcel public/index.html",
- "build": "parcel build public/index.html --no-scope-hoist",
- "test": "test-ipfs-example"
- },
- "keywords": [],
- "author": "",
- "license": "ISC",
- "dependencies": {
- "ipfs": "^0.55.3"
- },
- "devDependencies": {
- "parcel": "2.0.0-beta.2",
- "rimraf": "^3.0.2",
- "standard": "^16.0.3",
- "test-ipfs-example": "^3.0.0"
- }
-}
diff --git a/examples/browser-parceljs/public/index.html b/examples/browser-parceljs/public/index.html
deleted file mode 100644
index 5431174d89..0000000000
--- a/examples/browser-parceljs/public/index.html
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
-
-
-
-
- js-ipfs parcel.js browser example
-
-
-
-
- Connecting to IPFS...
-
-
-
-
-
-
-
-
-
-
-
diff --git a/examples/browser-parceljs/public/index.js b/examples/browser-parceljs/public/index.js
deleted file mode 100644
index b75b54e601..0000000000
--- a/examples/browser-parceljs/public/index.js
+++ /dev/null
@@ -1,39 +0,0 @@
-import IPFS from 'ipfs'
-import uint8ArrayConcat from 'uint8arrays/concat'
-import uint8ArrayToString from 'uint8arrays/to-string'
-
-document.addEventListener('DOMContentLoaded', async () => {
- // IPFS node setup
- const node = await IPFS.create({ repo: String(Math.random() + Date.now()) })
-
- // UI elements
- const status = document.getElementById('status')
- const output = document.getElementById('output')
-
- output.textContent = ''
-
- function log (txt) {
- console.info(txt)
- output.textContent += `${txt.trim()}\n`
- }
-
- status.innerText = 'Connected to IPFS :)'
-
- const version = await node.version()
-
- log(`The IPFS node version is ${version.version}`)
-
- const entry = await node.add({
- path: 'hello-parcel.txt',
- content: 'Hello from parcel.js bundled ipfs example'
- })
- log(`This page deployed ${entry.path} to IPFS and its CID is ${entry.cid}`)
-
- const buffers = []
-
- for await (const buf of node.cat(entry.cid)) {
- buffers.push(buf)
- }
-
- log(`The contents of the file was: ${uint8ArrayToString(uint8ArrayConcat(buffers))}`)
-})
diff --git a/examples/browser-parceljs/test.js b/examples/browser-parceljs/test.js
deleted file mode 100644
index ad5f99558a..0000000000
--- a/examples/browser-parceljs/test.js
+++ /dev/null
@@ -1,15 +0,0 @@
-'use strict'
-
-const pkg = require('./package.json')
-
-module.exports = {
- [pkg.name]: function (browser) {
- browser
- .url(process.env.IPFS_EXAMPLE_TEST_URL)
- .waitForElementVisible('#output')
-
- browser.expect.element('#output').text.to.contain('The contents of the file was: Hello from parcel.js bundled ipfs example')
-
- browser.end()
- }
-}
diff --git a/examples/browser-readablestream/CHANGELOG.md b/examples/browser-readablestream/CHANGELOG.md
deleted file mode 100644
index a9504adfe0..0000000000
--- a/examples/browser-readablestream/CHANGELOG.md
+++ /dev/null
@@ -1,39 +0,0 @@
-# Change Log
-
-All notable changes to this project will be documented in this file.
-See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
-
-## [2.0.1](https://github.com/ipfs/js-ipfs/compare/example-browser-readablestream@2.0.0...example-browser-readablestream@2.0.1) (2020-04-08)
-
-**Note:** Version bump only for package example-browser-readablestream
-
-
-
-
-
-# 2.0.0 (2020-03-31)
-
-
-### Bug Fixes
-
-* examples after files API refactor ([#1740](https://github.com/ipfs/js-ipfs/issues/1740)) ([34ec036](https://github.com/ipfs/js-ipfs/commit/34ec036b0df9563a014c1348f0a056c1f98aadad))
-
-
-### Code Refactoring
-
-* export types and utilities statically ([#1908](https://github.com/ipfs/js-ipfs/issues/1908)) ([79d7fef](https://github.com/ipfs/js-ipfs/commit/79d7fef7d28c0e0405fb69af149ff09681ac4273))
-
-
-### Features
-
-* Allows for byte offsets when using ipfs.files.cat and friends to request slices of files ([a93971a](https://github.com/ipfs/js-ipfs/commit/a93971a8905358a291b2cf3724df32382b05f5ce))
-
-
-### BREAKING CHANGES
-
-* `ipfs.util.isIPFS` and `ipfs.util.crypto` have moved to static exports and should be accessed via `const { isIPFS, crypto } = require('ipfs')`.
-
-The modules available under `ipfs.types.*` have also become static exports.
-
-License: MIT
-Signed-off-by: Alan Shaw
diff --git a/examples/browser-readablestream/README.md b/examples/browser-readablestream/README.md
deleted file mode 100644
index c4d02907a5..0000000000
--- a/examples/browser-readablestream/README.md
+++ /dev/null
@@ -1,26 +0,0 @@
-# Streaming video from IPFS using ReadableStreams
-
-We can use the excellent [`videostream`](https://www.npmjs.com/package/videostream) to stream video from IPFS to the browser. All we need to do is return a [`ReadableStream`](https://developer.mozilla.org/en-US/docs/Web/API/ReadableStream)-like object that contains the requested byte ranges.
-
-Take a look at [`index.js`](./index.js) to see a working example.
-
-## Before you start
-
-First clone this repo, install dependencies in the project root and build the project.
-
-```console
-$ git clone https://github.com/ipfs/js-ipfs.git
-$ cd js-ipfs
-$ npm install
-$ npm run build
-```
-
-## Running the example
-
-In this directory:
-
-```
-$ npm start
-```
-
-Then open [http://localhost:8888](http://localhost:8888) in your browser.
diff --git a/examples/browser-readablestream/index.html b/examples/browser-readablestream/index.html
deleted file mode 100644
index ba1e63b87e..0000000000
--- a/examples/browser-readablestream/index.html
+++ /dev/null
@@ -1,66 +0,0 @@
-
-
-
-
- <%= htmlWebpackPlugin.options.title %>
-
-
-
-
-
-
diff --git a/examples/browser-readablestream/index.js b/examples/browser-readablestream/index.js
deleted file mode 100644
index 9ada153084..0000000000
--- a/examples/browser-readablestream/index.js
+++ /dev/null
@@ -1,79 +0,0 @@
-'use strict'
-
-/* eslint-env browser */
-
-const Ipfs = require('ipfs')
-const VideoStream = require('videostream')
-const toStream = require('it-to-stream')
-const {
- dragDrop,
- statusMessages,
- createVideoElement,
- log
-} = require('./utils')
-
-document.addEventListener('DOMContentLoaded', async () => {
- const ipfs = await Ipfs.create({ repo: 'ipfs-' + Math.random() })
-
- log('IPFS: Initialising')
-
- // Set up event listeners on the element from index.html
- const videoElement = createVideoElement()
- const cidInput = document.getElementById('cid')
- const goButton = document.getElementById('gobutton')
- let stream
-
- goButton.onclick = function (event) {
- event.preventDefault()
-
- log(`IPFS: Playing ${cidInput.value.trim()}`)
-
- // Set up the video stream an attach it to our element
- const videoStream = new VideoStream({
- createReadStream: function createReadStream (opts) {
- const start = opts.start
-
- // The videostream library does not always pass an end byte but when
- // it does, it wants bytes between start & end inclusive.
- // catReadableStream returns the bytes exclusive so increment the end
- // byte if it's been requested
- const end = opts.end ? start + opts.end + 1 : undefined
-
- log(`Stream: Asked for data starting at byte ${start} and ending at byte ${end}`)
-
- // If we've streamed before, clean up the existing stream
- if (stream && stream.destroy) {
- stream.destroy()
- }
-
- // This stream will contain the requested bytes
- stream = toStream.readable(ipfs.cat(cidInput.value.trim(), {
- offset: start,
- length: end && end - start
- }))
-
- // Log error messages
- stream.on('error', (error) => log(error))
-
- if (start === 0) {
- // Show the user some messages while we wait for the data stream to start
- statusMessages(stream, log)
- }
-
- return stream
- }
- }, videoElement)
-
- videoElement.addEventListener('error', () => log(videoStream.detailedError))
- }
-
- // Allow adding files to IPFS via drag and drop
- dragDrop(ipfs, log)
-
- log('IPFS: Ready')
- log('IPFS: Drop an .mp4 file into this window to add a file')
- log('IPFS: Then press the "Go!" button to start playing a video')
-
- cidInput.disabled = false
- goButton.disabled = false
-})
diff --git a/examples/browser-readablestream/package.json b/examples/browser-readablestream/package.json
deleted file mode 100644
index eda879e92a..0000000000
--- a/examples/browser-readablestream/package.json
+++ /dev/null
@@ -1,29 +0,0 @@
-{
- "name": "example-browser-readablestream",
- "description": "An example of how to play a video in a browser using a readable stream",
- "main": "index.js",
- "version": "2.0.1",
- "private": true,
- "scripts": {
- "clean": "rimraf ./dist",
- "build": "webpack",
- "start": "npm run build && http-server dist -a 127.0.0.1 -p 8888",
- "test": "test-ipfs-example"
- },
- "author": "",
- "license": "ISC",
- "devDependencies": {
- "html-webpack-plugin": "^5.3.1",
- "http-server": "^0.12.3",
- "node-polyfill-webpack-plugin": "^1.0.3",
- "rimraf": "^3.0.2",
- "test-ipfs-example": "^3.0.0",
- "webpack": "^5.28.0",
- "webpack-cli": "^4.5.0"
- },
- "dependencies": {
- "ipfs": "^0.55.3",
- "it-to-stream": "^1.0.0",
- "videostream": "^3.2.0"
- }
-}
diff --git a/examples/browser-readablestream/test.js b/examples/browser-readablestream/test.js
deleted file mode 100644
index efaa07774f..0000000000
--- a/examples/browser-readablestream/test.js
+++ /dev/null
@@ -1,788 +0,0 @@
-'use strict'
-
-const pkg = require('./package.json')
-
-module.exports = {
- [pkg.name]: function (browser) {
- browser
- .url(process.env.IPFS_EXAMPLE_TEST_URL)
- .waitForElementVisible('#output')
-
- browser.expect.element('#output').text.to.contain('IPFS: Then press the "Go!" button to start playing a video')
-
- browser.executeAsync(async function (done) {
- const container = document.querySelector('#container')
-
- // fake dropping a file
- container.ondrop({
- preventDefault: () => {},
- dataTransfer: {
- items: [{
- kind: 'file',
- getAsFile: () => {
- // actually an .mp4 file, believe it or not
- return [
- 0x00, 0x00, 0x00, 0x20, 0x66, 0x74, 0x79, 0x70,
- 0x69, 0x73, 0x6f, 0x6d, 0x00, 0x00, 0x02, 0x00,
- 0x69, 0x73, 0x6f, 0x6d, 0x69, 0x73, 0x6f, 0x32,
- 0x61, 0x76, 0x63, 0x31, 0x6d, 0x70, 0x34, 0x31,
- 0x00, 0x00, 0x00, 0x08, 0x66, 0x72, 0x65, 0x65,
- 0x00, 0x00, 0x0c, 0x0e, 0x6d, 0x64, 0x61, 0x74,
- 0x00, 0x00, 0x02, 0xae, 0x06, 0x05, 0xff, 0xff,
- 0xaa, 0xdc, 0x45, 0xe9, 0xbd, 0xe6, 0xd9, 0x48,
- 0xb7, 0x96, 0x2c, 0xd8, 0x20, 0xd9, 0x23, 0xee,
- 0xef, 0x78, 0x32, 0x36, 0x34, 0x20, 0x2d, 0x20,
- 0x63, 0x6f, 0x72, 0x65, 0x20, 0x31, 0x35, 0x35,
- 0x20, 0x72, 0x32, 0x39, 0x31, 0x37, 0x20, 0x30,
- 0x61, 0x38, 0x34, 0x64, 0x39, 0x38, 0x20, 0x2d,
- 0x20, 0x48, 0x2e, 0x32, 0x36, 0x34, 0x2f, 0x4d,
- 0x50, 0x45, 0x47, 0x2d, 0x34, 0x20, 0x41, 0x56,
- 0x43, 0x20, 0x63, 0x6f, 0x64, 0x65, 0x63, 0x20,
- 0x2d, 0x20, 0x43, 0x6f, 0x70, 0x79, 0x6c, 0x65,
- 0x66, 0x74, 0x20, 0x32, 0x30, 0x30, 0x33, 0x2d,
- 0x32, 0x30, 0x31, 0x38, 0x20, 0x2d, 0x20, 0x68,
- 0x74, 0x74, 0x70, 0x3a, 0x2f, 0x2f, 0x77, 0x77,
- 0x77, 0x2e, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x6c,
- 0x61, 0x6e, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x78,
- 0x32, 0x36, 0x34, 0x2e, 0x68, 0x74, 0x6d, 0x6c,
- 0x20, 0x2d, 0x20, 0x6f, 0x70, 0x74, 0x69, 0x6f,
- 0x6e, 0x73, 0x3a, 0x20, 0x63, 0x61, 0x62, 0x61,
- 0x63, 0x3d, 0x31, 0x20, 0x72, 0x65, 0x66, 0x3d,
- 0x33, 0x20, 0x64, 0x65, 0x62, 0x6c, 0x6f, 0x63,
- 0x6b, 0x3d, 0x31, 0x3a, 0x30, 0x3a, 0x30, 0x20,
- 0x61, 0x6e, 0x61, 0x6c, 0x79, 0x73, 0x65, 0x3d,
- 0x30, 0x78, 0x33, 0x3a, 0x30, 0x78, 0x31, 0x31,
- 0x33, 0x20, 0x6d, 0x65, 0x3d, 0x68, 0x65, 0x78,
- 0x20, 0x73, 0x75, 0x62, 0x6d, 0x65, 0x3d, 0x37,
- 0x20, 0x70, 0x73, 0x79, 0x3d, 0x31, 0x20, 0x70,
- 0x73, 0x79, 0x5f, 0x72, 0x64, 0x3d, 0x31, 0x2e,
- 0x30, 0x30, 0x3a, 0x30, 0x2e, 0x30, 0x30, 0x20,
- 0x6d, 0x69, 0x78, 0x65, 0x64, 0x5f, 0x72, 0x65,
- 0x66, 0x3d, 0x31, 0x20, 0x6d, 0x65, 0x5f, 0x72,
- 0x61, 0x6e, 0x67, 0x65, 0x3d, 0x31, 0x36, 0x20,
- 0x63, 0x68, 0x72, 0x6f, 0x6d, 0x61, 0x5f, 0x6d,
- 0x65, 0x3d, 0x31, 0x20, 0x74, 0x72, 0x65, 0x6c,
- 0x6c, 0x69, 0x73, 0x3d, 0x31, 0x20, 0x38, 0x78,
- 0x38, 0x64, 0x63, 0x74, 0x3d, 0x31, 0x20, 0x63,
- 0x71, 0x6d, 0x3d, 0x30, 0x20, 0x64, 0x65, 0x61,
- 0x64, 0x7a, 0x6f, 0x6e, 0x65, 0x3d, 0x32, 0x31,
- 0x2c, 0x31, 0x31, 0x20, 0x66, 0x61, 0x73, 0x74,
- 0x5f, 0x70, 0x73, 0x6b, 0x69, 0x70, 0x3d, 0x31,
- 0x20, 0x63, 0x68, 0x72, 0x6f, 0x6d, 0x61, 0x5f,
- 0x71, 0x70, 0x5f, 0x6f, 0x66, 0x66, 0x73, 0x65,
- 0x74, 0x3d, 0x2d, 0x32, 0x20, 0x74, 0x68, 0x72,
- 0x65, 0x61, 0x64, 0x73, 0x3d, 0x31, 0x20, 0x6c,
- 0x6f, 0x6f, 0x6b, 0x61, 0x68, 0x65, 0x61, 0x64,
- 0x5f, 0x74, 0x68, 0x72, 0x65, 0x61, 0x64, 0x73,
- 0x3d, 0x31, 0x20, 0x73, 0x6c, 0x69, 0x63, 0x65,
- 0x64, 0x5f, 0x74, 0x68, 0x72, 0x65, 0x61, 0x64,
- 0x73, 0x3d, 0x30, 0x20, 0x6e, 0x72, 0x3d, 0x30,
- 0x20, 0x64, 0x65, 0x63, 0x69, 0x6d, 0x61, 0x74,
- 0x65, 0x3d, 0x31, 0x20, 0x69, 0x6e, 0x74, 0x65,
- 0x72, 0x6c, 0x61, 0x63, 0x65, 0x64, 0x3d, 0x30,
- 0x20, 0x62, 0x6c, 0x75, 0x72, 0x61, 0x79, 0x5f,
- 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x74, 0x3d, 0x30,
- 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x72, 0x61,
- 0x69, 0x6e, 0x65, 0x64, 0x5f, 0x69, 0x6e, 0x74,
- 0x72, 0x61, 0x3d, 0x30, 0x20, 0x62, 0x66, 0x72,
- 0x61, 0x6d, 0x65, 0x73, 0x3d, 0x33, 0x20, 0x62,
- 0x5f, 0x70, 0x79, 0x72, 0x61, 0x6d, 0x69, 0x64,
- 0x3d, 0x32, 0x20, 0x62, 0x5f, 0x61, 0x64, 0x61,
- 0x70, 0x74, 0x3d, 0x31, 0x20, 0x62, 0x5f, 0x62,
- 0x69, 0x61, 0x73, 0x3d, 0x30, 0x20, 0x64, 0x69,
- 0x72, 0x65, 0x63, 0x74, 0x3d, 0x31, 0x20, 0x77,
- 0x65, 0x69, 0x67, 0x68, 0x74, 0x62, 0x3d, 0x31,
- 0x20, 0x6f, 0x70, 0x65, 0x6e, 0x5f, 0x67, 0x6f,
- 0x70, 0x3d, 0x30, 0x20, 0x77, 0x65, 0x69, 0x67,
- 0x68, 0x74, 0x70, 0x3d, 0x32, 0x20, 0x6b, 0x65,
- 0x79, 0x69, 0x6e, 0x74, 0x3d, 0x32, 0x35, 0x30,
- 0x20, 0x6b, 0x65, 0x79, 0x69, 0x6e, 0x74, 0x5f,
- 0x6d, 0x69, 0x6e, 0x3d, 0x32, 0x35, 0x20, 0x73,
- 0x63, 0x65, 0x6e, 0x65, 0x63, 0x75, 0x74, 0x3d,
- 0x34, 0x30, 0x20, 0x69, 0x6e, 0x74, 0x72, 0x61,
- 0x5f, 0x72, 0x65, 0x66, 0x72, 0x65, 0x73, 0x68,
- 0x3d, 0x30, 0x20, 0x72, 0x63, 0x5f, 0x6c, 0x6f,
- 0x6f, 0x6b, 0x61, 0x68, 0x65, 0x61, 0x64, 0x3d,
- 0x34, 0x30, 0x20, 0x72, 0x63, 0x3d, 0x63, 0x72,
- 0x66, 0x20, 0x6d, 0x62, 0x74, 0x72, 0x65, 0x65,
- 0x3d, 0x31, 0x20, 0x63, 0x72, 0x66, 0x3d, 0x32,
- 0x33, 0x2e, 0x30, 0x20, 0x71, 0x63, 0x6f, 0x6d,
- 0x70, 0x3d, 0x30, 0x2e, 0x36, 0x30, 0x20, 0x71,
- 0x70, 0x6d, 0x69, 0x6e, 0x3d, 0x30, 0x20, 0x71,
- 0x70, 0x6d, 0x61, 0x78, 0x3d, 0x36, 0x39, 0x20,
- 0x71, 0x70, 0x73, 0x74, 0x65, 0x70, 0x3d, 0x34,
- 0x20, 0x69, 0x70, 0x5f, 0x72, 0x61, 0x74, 0x69,
- 0x6f, 0x3d, 0x31, 0x2e, 0x34, 0x30, 0x20, 0x61,
- 0x71, 0x3d, 0x31, 0x3a, 0x31, 0x2e, 0x30, 0x30,
- 0x00, 0x80, 0x00, 0x00, 0x00, 0x20, 0x65, 0x88,
- 0x84, 0x00, 0xff, 0x70, 0x23, 0x86, 0xe6, 0xd5,
- 0xc6, 0x98, 0xae, 0xff, 0x28, 0x19, 0xe0, 0x00,
- 0x17, 0x73, 0xa5, 0x8f, 0x1b, 0x73, 0x2a, 0xd3,
- 0xef, 0x38, 0x69, 0x38, 0xb7, 0x19, 0x00, 0x00,
- 0x00, 0x08, 0x41, 0x9a, 0x24, 0x6c, 0x4f, 0xff,
- 0xfe, 0xc0, 0x00, 0x00, 0x00, 0x08, 0x41, 0x9e,
- 0x42, 0x78, 0x8a, 0xff, 0xe6, 0x81, 0x00, 0x00,
- 0x00, 0x08, 0x01, 0x9e, 0x61, 0x74, 0x47, 0x7f,
- 0xe8, 0x80, 0x00, 0x00, 0x00, 0x08, 0x01, 0x9e,
- 0x63, 0x6a, 0x47, 0x7f, 0xe8, 0x81, 0x00, 0x00,
- 0x00, 0x0d, 0x41, 0x9a, 0x68, 0x49, 0xa8, 0x41,
- 0x68, 0x99, 0x4c, 0x09, 0xff, 0xfe, 0xc1, 0x00,
- 0x00, 0x00, 0x09, 0x41, 0x9e, 0x86, 0x45, 0x11,
- 0x2c, 0x57, 0xe6, 0x81, 0x00, 0x00, 0x00, 0x08,
- 0x01, 0x9e, 0xa5, 0x74, 0x47, 0x7f, 0xe8, 0x81,
- 0x00, 0x00, 0x00, 0x08, 0x01, 0x9e, 0xa7, 0x6a,
- 0x47, 0x7f, 0xe8, 0x80, 0x00, 0x00, 0x00, 0x0d,
- 0x41, 0x9a, 0xac, 0x49, 0xa8, 0x41, 0x6c, 0x99,
- 0x4c, 0x09, 0xff, 0xfe, 0xc0, 0x00, 0x00, 0x00,
- 0x09, 0x41, 0x9e, 0xca, 0x45, 0x15, 0x2c, 0x57,
- 0xe6, 0x81, 0x00, 0x00, 0x00, 0x08, 0x01, 0x9e,
- 0xe9, 0x74, 0x47, 0x7f, 0xe8, 0x80, 0x00, 0x00,
- 0x00, 0x08, 0x01, 0x9e, 0xeb, 0x6a, 0x47, 0x7f,
- 0xe8, 0x80, 0x00, 0x00, 0x00, 0x0d, 0x41, 0x9a,
- 0xf0, 0x49, 0xa8, 0x41, 0x6c, 0x99, 0x4c, 0x09,
- 0xff, 0xfe, 0xc1, 0x00, 0x00, 0x00, 0x09, 0x41,
- 0x9f, 0x0e, 0x45, 0x15, 0x2c, 0x57, 0xe6, 0x81,
- 0x00, 0x00, 0x00, 0x08, 0x01, 0x9f, 0x2d, 0x74,
- 0x47, 0x7f, 0xe8, 0x81, 0x00, 0x00, 0x00, 0x08,
- 0x01, 0x9f, 0x2f, 0x6a, 0x47, 0x7f, 0xe8, 0x80,
- 0x00, 0x00, 0x00, 0x0d, 0x41, 0x9b, 0x34, 0x49,
- 0xa8, 0x41, 0x6c, 0x99, 0x4c, 0x09, 0xff, 0xfe,
- 0xc0, 0x00, 0x00, 0x00, 0x09, 0x41, 0x9f, 0x52,
- 0x45, 0x15, 0x2c, 0x57, 0xe6, 0x81, 0x00, 0x00,
- 0x00, 0x08, 0x01, 0x9f, 0x71, 0x74, 0x47, 0x7f,
- 0xe8, 0x80, 0x00, 0x00, 0x00, 0x08, 0x01, 0x9f,
- 0x73, 0x6a, 0x47, 0x7f, 0xe8, 0x80, 0x00, 0x00,
- 0x00, 0x0d, 0x41, 0x9b, 0x78, 0x49, 0xa8, 0x41,
- 0x6c, 0x99, 0x4c, 0x09, 0xff, 0xfe, 0xc1, 0x00,
- 0x00, 0x00, 0x09, 0x41, 0x9f, 0x96, 0x45, 0x15,
- 0x2c, 0x57, 0xe6, 0x80, 0x00, 0x00, 0x00, 0x08,
- 0x01, 0x9f, 0xb5, 0x74, 0x47, 0x7f, 0xe8, 0x81,
- 0x00, 0x00, 0x00, 0x08, 0x01, 0x9f, 0xb7, 0x6a,
- 0x47, 0x7f, 0xe8, 0x81, 0x00, 0x00, 0x00, 0x0d,
- 0x41, 0x9b, 0xbc, 0x49, 0xa8, 0x41, 0x6c, 0x99,
- 0x4c, 0x09, 0xff, 0xfe, 0xc0, 0x00, 0x00, 0x00,
- 0x09, 0x41, 0x9f, 0xda, 0x45, 0x15, 0x2c, 0x57,
- 0xe6, 0x81, 0x00, 0x00, 0x00, 0x08, 0x01, 0x9f,
- 0xf9, 0x74, 0x47, 0x7f, 0xe8, 0x80, 0x00, 0x00,
- 0x00, 0x08, 0x01, 0x9f, 0xfb, 0x6a, 0x47, 0x7f,
- 0xe8, 0x81, 0x00, 0x00, 0x00, 0x0d, 0x41, 0x9b,
- 0xe0, 0x49, 0xa8, 0x41, 0x6c, 0x99, 0x4c, 0x09,
- 0x7f, 0xfe, 0xc1, 0x00, 0x00, 0x00, 0x09, 0x41,
- 0x9e, 0x1e, 0x45, 0x15, 0x2c, 0x57, 0xe6, 0x80,
- 0x00, 0x00, 0x00, 0x08, 0x01, 0x9e, 0x3d, 0x74,
- 0x47, 0x7f, 0xe8, 0x80, 0x00, 0x00, 0x00, 0x08,
- 0x01, 0x9e, 0x3f, 0x6a, 0x47, 0x7f, 0xe8, 0x81,
- 0x00, 0x00, 0x00, 0x0d, 0x41, 0x9a, 0x24, 0x49,
- 0xa8, 0x41, 0x6c, 0x99, 0x4c, 0x09, 0x7f, 0xfe,
- 0xc0, 0x00, 0x00, 0x00, 0x09, 0x41, 0x9e, 0x42,
- 0x45, 0x15, 0x2c, 0x57, 0xe6, 0x81, 0x00, 0x00,
- 0x00, 0x08, 0x01, 0x9e, 0x61, 0x74, 0x47, 0x7f,
- 0xe8, 0x80, 0x00, 0x00, 0x00, 0x08, 0x01, 0x9e,
- 0x63, 0x6a, 0x47, 0x7f, 0xe8, 0x81, 0x00, 0x00,
- 0x00, 0x10, 0x41, 0x9a, 0x68, 0x49, 0xa8, 0x41,
- 0x6c, 0x99, 0x4c, 0x09, 0x7f, 0x51, 0x88, 0xd2,
- 0xf3, 0xc1, 0x00, 0x00, 0x00, 0x09, 0x41, 0x9e,
- 0x86, 0x45, 0x15, 0x2c, 0x67, 0xe7, 0x81, 0x00,
- 0x00, 0x00, 0x08, 0x01, 0x9e, 0xa5, 0x74, 0x47,
- 0x7f, 0xe8, 0x81, 0x00, 0x00, 0x00, 0x09, 0x01,
- 0x9e, 0xa7, 0x6a, 0x47, 0x7f, 0xec, 0x0d, 0xc0,
- 0x00, 0x00, 0x00, 0x10, 0x41, 0x9a, 0xac, 0x49,
- 0xa8, 0x41, 0x6c, 0x99, 0x4c, 0x09, 0x7f, 0x55,
- 0xea, 0xc9, 0x7c, 0xf8, 0x00, 0x00, 0x00, 0x09,
- 0x41, 0x9e, 0xca, 0x45, 0x15, 0x2c, 0x67, 0xe7,
- 0x81, 0x00, 0x00, 0x00, 0x08, 0x01, 0x9e, 0xe9,
- 0x74, 0x47, 0x7f, 0xe8, 0x80, 0x00, 0x00, 0x00,
- 0x09, 0x01, 0x9e, 0xeb, 0x6a, 0x47, 0x7f, 0xec,
- 0x0d, 0xc0, 0x00, 0x00, 0x00, 0x0e, 0x41, 0x9a,
- 0xef, 0x49, 0xa8, 0x41, 0x6c, 0x99, 0x4c, 0x0b,
- 0xff, 0xd6, 0xaf, 0x39, 0x00, 0x00, 0x00, 0x09,
- 0x41, 0x9f, 0x0d, 0x45, 0x15, 0x2c, 0x67, 0xe7,
- 0x81, 0x00, 0x00, 0x00, 0x08, 0x01, 0x9f, 0x2e,
- 0x6a, 0x47, 0x7f, 0xe8, 0x81, 0x00, 0x00, 0x00,
- 0x0d, 0x41, 0x9b, 0x30, 0x49, 0xa8, 0x41, 0x6c,
- 0x99, 0x4c, 0x09, 0x7f, 0xfe, 0xc0, 0x00, 0x00,
- 0x00, 0x16, 0x41, 0x9b, 0x52, 0x49, 0xe1, 0x0a,
- 0x52, 0x65, 0x30, 0x51, 0x52, 0xcb, 0xff, 0x55,
- 0xdd, 0xad, 0xfa, 0x0e, 0x9c, 0xf9, 0xad, 0x70,
- 0x00, 0x00, 0x00, 0x08, 0x01, 0x9f, 0x71, 0x6a,
- 0x47, 0x7f, 0xe8, 0x81, 0x00, 0x00, 0x00, 0x10,
- 0x41, 0x9b, 0x73, 0x49, 0xe1, 0x0e, 0x89, 0x94,
- 0xc0, 0x97, 0xff, 0x56, 0x3a, 0xe0, 0xee, 0x60,
- 0x00, 0x00, 0x00, 0x0c, 0x41, 0x9b, 0x94, 0x49,
- 0xe1, 0x0f, 0x26, 0x53, 0x02, 0x5f, 0xfe, 0xc0,
- 0x00, 0x00, 0x00, 0x15, 0x41, 0x9b, 0xb5, 0x49,
- 0xe1, 0x0f, 0x26, 0x53, 0x02, 0x5f, 0x51, 0x77,
- 0xfc, 0x36, 0xb3, 0xf2, 0xdb, 0x92, 0x30, 0x53,
- 0x39, 0x00, 0x00, 0x00, 0x0f, 0x41, 0x9b, 0xd9,
- 0x49, 0xe1, 0x0f, 0x26, 0x53, 0x02, 0x5f, 0x56,
- 0x1f, 0x73, 0xea, 0x80, 0x00, 0x00, 0x00, 0x09,
- 0x41, 0x9f, 0xf7, 0x45, 0x11, 0x3c, 0x57, 0xe6,
- 0x81, 0x00, 0x00, 0x00, 0x08, 0x01, 0x9e, 0x16,
- 0x74, 0x47, 0x7f, 0xe8, 0x81, 0x00, 0x00, 0x00,
- 0x08, 0x01, 0x9e, 0x18, 0x6a, 0x47, 0x7f, 0xe8,
- 0x80, 0x00, 0x00, 0x00, 0x0e, 0x41, 0x9a, 0x1a,
- 0x49, 0xa8, 0x41, 0x68, 0x99, 0x4c, 0x09, 0x7f,
- 0x5b, 0x6f, 0x6d, 0x00, 0x00, 0x00, 0x0d, 0x41,
- 0x9a, 0x3b, 0x49, 0xe1, 0x0a, 0x52, 0x65, 0x30,
- 0x25, 0xff, 0xfe, 0xc0, 0x00, 0x00, 0x00, 0x17,
- 0x41, 0x9a, 0x5d, 0x4b, 0xe1, 0x08, 0x43, 0xa2,
- 0x1b, 0x02, 0x15, 0x02, 0x13, 0x01, 0x4d, 0x13,
- 0x2f, 0x75, 0x56, 0x14, 0x5b, 0x6b, 0x19, 0x00,
- 0x00, 0x00, 0x08, 0x01, 0x9e, 0x7c, 0x6a, 0x47,
- 0x7f, 0xe8, 0x81, 0x00, 0x00, 0x00, 0x0e, 0x41,
- 0x9a, 0x61, 0x49, 0xe1, 0x0f, 0x26, 0x53, 0x02,
- 0x5f, 0x4a, 0x84, 0x28, 0xe0, 0x00, 0x00, 0x00,
- 0x09, 0x41, 0x9e, 0x9f, 0x45, 0x11, 0x3c, 0x57,
- 0xe6, 0x80, 0x00, 0x00, 0x00, 0x08, 0x01, 0x9e,
- 0xbe, 0x74, 0x47, 0x7f, 0xe8, 0x81, 0x00, 0x00,
- 0x00, 0x08, 0x01, 0x9e, 0xa0, 0x6a, 0x47, 0x7f,
- 0xe8, 0x80, 0x00, 0x00, 0x00, 0x0d, 0x41, 0x9a,
- 0xa5, 0x49, 0xa8, 0x41, 0x68, 0x99, 0x4c, 0x09,
- 0x7f, 0xfe, 0xc1, 0x00, 0x00, 0x00, 0x09, 0x41,
- 0x9e, 0xc3, 0x45, 0x11, 0x2c, 0x67, 0xe7, 0x80,
- 0x00, 0x00, 0x00, 0x08, 0x01, 0x9e, 0xe2, 0x74,
- 0x47, 0x7f, 0xe8, 0x81, 0x00, 0x00, 0x00, 0x08,
- 0x01, 0x9e, 0xe4, 0x6a, 0x47, 0x7f, 0xe8, 0x81,
- 0x00, 0x00, 0x00, 0x0d, 0x41, 0x9a, 0xe9, 0x49,
- 0xa8, 0x41, 0x6c, 0x99, 0x4c, 0x0b, 0xff, 0x86,
- 0x81, 0x00, 0x00, 0x00, 0x09, 0x41, 0x9f, 0x07,
- 0x45, 0x15, 0x2c, 0x67, 0xe7, 0x81, 0x00, 0x00,
- 0x00, 0x08, 0x01, 0x9f, 0x26, 0x74, 0x47, 0x7f,
- 0xe8, 0x80, 0x00, 0x00, 0x00, 0x08, 0x01, 0x9f,
- 0x28, 0x6a, 0x47, 0x7f, 0xe8, 0x80, 0x00, 0x00,
- 0x00, 0x14, 0x41, 0x9b, 0x2d, 0x4b, 0xa8, 0x42,
- 0x10, 0x5b, 0x21, 0xf0, 0x3f, 0x50, 0x3f, 0x30,
- 0x09, 0x7f, 0x3d, 0x19, 0x01, 0xd9, 0x00, 0x00,
- 0x00, 0x0a, 0x41, 0x9f, 0x4b, 0x45, 0x15, 0x2c,
- 0x57, 0xf3, 0xc3, 0xa0, 0x00, 0x00, 0x00, 0x08,
- 0x01, 0x9f, 0x6a, 0x74, 0x47, 0x7f, 0xe8, 0x80,
- 0x00, 0x00, 0x00, 0x08, 0x01, 0x9f, 0x6c, 0x6a,
- 0x47, 0x7f, 0xe8, 0x81, 0x00, 0x00, 0x00, 0x1f,
- 0x41, 0x9b, 0x6f, 0x4b, 0xa8, 0x42, 0x10, 0x5b,
- 0x21, 0xf0, 0x3f, 0x34, 0x0f, 0xc5, 0x01, 0x44,
- 0xcb, 0xff, 0x51, 0x74, 0x3f, 0xe6, 0xc8, 0xfd,
- 0xa4, 0x73, 0x32, 0x04, 0xa6, 0xd4, 0x61, 0x00,
- 0x00, 0x00, 0x08, 0x01, 0x9f, 0x8e, 0x6a, 0x47,
- 0x7f, 0xe8, 0x81, 0x00, 0x00, 0x00, 0x11, 0x41,
- 0x9b, 0x92, 0x49, 0xe1, 0x0a, 0x52, 0x65, 0x30,
- 0x25, 0xff, 0x4a, 0xfd, 0xaa, 0xeb, 0x40, 0xc0,
- 0x00, 0x00, 0x00, 0x09, 0x41, 0x9f, 0xb0, 0x45,
- 0x34, 0x4c, 0x57, 0xe6, 0x80, 0x00, 0x00, 0x00,
- 0x08, 0x01, 0x9f, 0xd1, 0x6a, 0x47, 0x7f, 0xe8,
- 0x81, 0x00, 0x00, 0x00, 0x1b, 0x41, 0x9b, 0xd6,
- 0x4b, 0xa8, 0x42, 0x10, 0x5a, 0x21, 0xf0, 0x10,
- 0x44, 0x40, 0x41, 0x20, 0x09, 0xff, 0x49, 0xa3,
- 0x49, 0x50, 0xd7, 0x64, 0xce, 0x71, 0x65, 0x80,
- 0x00, 0x00, 0x00, 0x09, 0x41, 0x9f, 0xf4, 0x45,
- 0x11, 0x2c, 0x57, 0xe6, 0x80, 0x00, 0x00, 0x00,
- 0x08, 0x01, 0x9e, 0x13, 0x74, 0x47, 0x7f, 0xe8,
- 0x81, 0x00, 0x00, 0x00, 0x08, 0x01, 0x9e, 0x15,
- 0x6a, 0x47, 0x7f, 0xe8, 0x80, 0x00, 0x00, 0x00,
- 0x13, 0x41, 0x9a, 0x19, 0x49, 0xa8, 0x41, 0x6c,
- 0x99, 0x4c, 0x09, 0xff, 0x57, 0x90, 0x88, 0x48,
- 0xec, 0x93, 0x77, 0x81, 0x00, 0x00, 0x00, 0x09,
- 0x41, 0x9e, 0x37, 0x45, 0x15, 0x2c, 0x67, 0xe7,
- 0x81, 0x00, 0x00, 0x00, 0x08, 0x01, 0x9e, 0x58,
- 0x6a, 0x47, 0x7f, 0xe8, 0x80, 0x00, 0x00, 0x00,
- 0x0f, 0x41, 0x9a, 0x5d, 0x49, 0xa8, 0x41, 0x6c,
- 0x99, 0x4c, 0x09, 0xff, 0x59, 0x78, 0xfd, 0x91,
- 0x00, 0x00, 0x00, 0x09, 0x41, 0x9e, 0x7b, 0x45,
- 0x15, 0x2c, 0x57, 0xe6, 0x80, 0x00, 0x00, 0x00,
- 0x08, 0x01, 0x9e, 0x9a, 0x74, 0x47, 0x7f, 0xe8,
- 0x81, 0x00, 0x00, 0x00, 0x08, 0x01, 0x9e, 0x9c,
- 0x6a, 0x47, 0x7f, 0xe8, 0x81, 0x00, 0x00, 0x00,
- 0x0d, 0x41, 0x9a, 0x80, 0x49, 0xa8, 0x41, 0x6c,
- 0x99, 0x4c, 0x09, 0xff, 0xfe, 0xc0, 0x00, 0x00,
- 0x00, 0x09, 0x41, 0x9e, 0xbe, 0x45, 0x15, 0x2c,
- 0x67, 0xe7, 0x80, 0x00, 0x00, 0x00, 0x08, 0x01,
- 0x9e, 0xdf, 0x6a, 0x47, 0x7f, 0xe8, 0x81, 0x00,
- 0x00, 0x00, 0x0d, 0x41, 0x9a, 0xc4, 0x49, 0xa8,
- 0x41, 0x6c, 0x99, 0x4c, 0x09, 0xff, 0xfe, 0xc0,
- 0x00, 0x00, 0x00, 0x09, 0x41, 0x9e, 0xe2, 0x45,
- 0x15, 0x2c, 0x57, 0xe6, 0x81, 0x00, 0x00, 0x00,
- 0x08, 0x01, 0x9f, 0x01, 0x74, 0x47, 0x7f, 0xe8,
- 0x80, 0x00, 0x00, 0x00, 0x08, 0x01, 0x9f, 0x03,
- 0x6a, 0x47, 0x7f, 0xe8, 0x81, 0x00, 0x00, 0x00,
- 0x0d, 0x41, 0x9b, 0x08, 0x49, 0xa8, 0x41, 0x6c,
- 0x99, 0x4c, 0x09, 0xff, 0xfe, 0xc1, 0x00, 0x00,
- 0x00, 0x09, 0x41, 0x9f, 0x26, 0x45, 0x15, 0x2c,
- 0x57, 0xe6, 0x81, 0x00, 0x00, 0x00, 0x08, 0x01,
- 0x9f, 0x45, 0x74, 0x47, 0x7f, 0xe8, 0x81, 0x00,
- 0x00, 0x00, 0x08, 0x01, 0x9f, 0x47, 0x6a, 0x47,
- 0x7f, 0xe8, 0x80, 0x00, 0x00, 0x00, 0x0d, 0x41,
- 0x9b, 0x4c, 0x49, 0xa8, 0x41, 0x6c, 0x99, 0x4c,
- 0x09, 0xff, 0xfe, 0xc0, 0x00, 0x00, 0x00, 0x09,
- 0x41, 0x9f, 0x6a, 0x45, 0x15, 0x2c, 0x57, 0xe6,
- 0x81, 0x00, 0x00, 0x00, 0x08, 0x01, 0x9f, 0x89,
- 0x74, 0x47, 0x7f, 0xe8, 0x80, 0x00, 0x00, 0x00,
- 0x08, 0x01, 0x9f, 0x8b, 0x6a, 0x47, 0x7f, 0xe8,
- 0x80, 0x00, 0x00, 0x00, 0x0d, 0x41, 0x9b, 0x90,
- 0x49, 0xa8, 0x41, 0x6c, 0x99, 0x4c, 0x09, 0xff,
- 0xfe, 0xc1, 0x00, 0x00, 0x00, 0x09, 0x41, 0x9f,
- 0xae, 0x45, 0x15, 0x2c, 0x57, 0xe6, 0x81, 0x00,
- 0x00, 0x00, 0x08, 0x01, 0x9f, 0xcd, 0x74, 0x47,
- 0x7f, 0xe8, 0x81, 0x00, 0x00, 0x00, 0x08, 0x01,
- 0x9f, 0xcf, 0x6a, 0x47, 0x7f, 0xe8, 0x80, 0x00,
- 0x00, 0x00, 0x0d, 0x41, 0x9b, 0xd4, 0x49, 0xa8,
- 0x41, 0x6c, 0x99, 0x4c, 0x09, 0xff, 0xfe, 0xc0,
- 0x00, 0x00, 0x00, 0x09, 0x41, 0x9f, 0xf2, 0x45,
- 0x15, 0x2c, 0x67, 0xe7, 0x81, 0x00, 0x00, 0x00,
- 0x08, 0x01, 0x9e, 0x11, 0x74, 0x47, 0x7f, 0xe8,
- 0x80, 0x00, 0x00, 0x00, 0x08, 0x01, 0x9e, 0x13,
- 0x6a, 0x47, 0x7f, 0xe8, 0x80, 0x00, 0x00, 0x00,
- 0x0d, 0x41, 0x9a, 0x18, 0x49, 0xa8, 0x41, 0x6c,
- 0x99, 0x4c, 0x09, 0xff, 0xfe, 0xc1, 0x00, 0x00,
- 0x00, 0x09, 0x41, 0x9e, 0x36, 0x45, 0x15, 0x2c,
- 0x57, 0xe6, 0x80, 0x00, 0x00, 0x00, 0x08, 0x01,
- 0x9e, 0x55, 0x74, 0x47, 0x7f, 0xe8, 0x81, 0x00,
- 0x00, 0x00, 0x08, 0x01, 0x9e, 0x57, 0x6a, 0x47,
- 0x7f, 0xe8, 0x81, 0x00, 0x00, 0x00, 0x0d, 0x41,
- 0x9a, 0x5c, 0x49, 0xa8, 0x41, 0x6c, 0x99, 0x4c,
- 0x09, 0xff, 0xfe, 0xc0, 0x00, 0x00, 0x00, 0x09,
- 0x41, 0x9e, 0x7a, 0x45, 0x15, 0x2c, 0x57, 0xe6,
- 0x81, 0x00, 0x00, 0x00, 0x08, 0x01, 0x9e, 0x99,
- 0x74, 0x47, 0x7f, 0xe8, 0x80, 0x00, 0x00, 0x00,
- 0x08, 0x01, 0x9e, 0x9b, 0x6a, 0x47, 0x7f, 0xe8,
- 0x81, 0x00, 0x00, 0x00, 0x0d, 0x41, 0x9a, 0x80,
- 0x49, 0xa8, 0x41, 0x6c, 0x99, 0x4c, 0x09, 0xff,
- 0xfe, 0xc1, 0x00, 0x00, 0x00, 0x09, 0x41, 0x9e,
- 0xbe, 0x45, 0x15, 0x2c, 0x57, 0xe6, 0x80, 0x00,
- 0x00, 0x00, 0x08, 0x01, 0x9e, 0xdd, 0x74, 0x47,
- 0x7f, 0xe8, 0x80, 0x00, 0x00, 0x00, 0x08, 0x01,
- 0x9e, 0xdf, 0x6a, 0x47, 0x7f, 0xe8, 0x81, 0x00,
- 0x00, 0x00, 0x0d, 0x41, 0x9a, 0xc4, 0x49, 0xa8,
- 0x41, 0x6c, 0x99, 0x4c, 0x09, 0xff, 0xfe, 0xc0,
- 0x00, 0x00, 0x00, 0x09, 0x41, 0x9e, 0xe2, 0x45,
- 0x15, 0x2c, 0x67, 0xe7, 0x81, 0x00, 0x00, 0x00,
- 0x08, 0x01, 0x9f, 0x01, 0x74, 0x47, 0x7f, 0xe8,
- 0x80, 0x00, 0x00, 0x00, 0x08, 0x01, 0x9f, 0x03,
- 0x6a, 0x47, 0x7f, 0xe8, 0x81, 0x00, 0x00, 0x00,
- 0x0d, 0x41, 0x9b, 0x08, 0x49, 0xa8, 0x41, 0x6c,
- 0x99, 0x4c, 0x09, 0xff, 0xfe, 0xc1, 0x00, 0x00,
- 0x00, 0x09, 0x41, 0x9f, 0x26, 0x45, 0x15, 0x2c,
- 0x57, 0xe6, 0x81, 0x00, 0x00, 0x00, 0x08, 0x01,
- 0x9f, 0x45, 0x74, 0x47, 0x7f, 0xe8, 0x81, 0x00,
- 0x00, 0x00, 0x08, 0x01, 0x9f, 0x47, 0x6a, 0x47,
- 0x7f, 0xe8, 0x80, 0x00, 0x00, 0x00, 0x0d, 0x41,
- 0x9b, 0x4c, 0x49, 0xa8, 0x41, 0x6c, 0x99, 0x4c,
- 0x09, 0x7f, 0xfe, 0xc0, 0x00, 0x00, 0x00, 0x09,
- 0x41, 0x9f, 0x6a, 0x45, 0x15, 0x2c, 0x57, 0xe6,
- 0x81, 0x00, 0x00, 0x00, 0x08, 0x01, 0x9f, 0x89,
- 0x74, 0x47, 0x7f, 0xe8, 0x80, 0x00, 0x00, 0x00,
- 0x08, 0x01, 0x9f, 0x8b, 0x6a, 0x47, 0x7f, 0xe8,
- 0x80, 0x00, 0x00, 0x00, 0x0d, 0x41, 0x9b, 0x90,
- 0x49, 0xa8, 0x41, 0x6c, 0x99, 0x4c, 0x09, 0x7f,
- 0xfe, 0xc1, 0x00, 0x00, 0x00, 0x09, 0x41, 0x9f,
- 0xae, 0x45, 0x15, 0x2c, 0x57, 0xe6, 0x81, 0x00,
- 0x00, 0x00, 0x08, 0x01, 0x9f, 0xcd, 0x74, 0x47,
- 0x7f, 0xe8, 0x81, 0x00, 0x00, 0x00, 0x08, 0x01,
- 0x9f, 0xcf, 0x6a, 0x47, 0x7f, 0xe8, 0x80, 0x00,
- 0x00, 0x00, 0x0d, 0x41, 0x9b, 0xd4, 0x49, 0xa8,
- 0x41, 0x6c, 0x99, 0x4c, 0x0b, 0xff, 0x86, 0x80,
- 0x00, 0x00, 0x00, 0x09, 0x41, 0x9f, 0xf2, 0x45,
- 0x15, 0x2c, 0x57, 0xe6, 0x81, 0x00, 0x00, 0x00,
- 0x08, 0x01, 0x9e, 0x11, 0x74, 0x47, 0x7f, 0xe8,
- 0x80, 0x00, 0x00, 0x00, 0x08, 0x01, 0x9e, 0x13,
- 0x6a, 0x47, 0x7f, 0xe8, 0x80, 0x00, 0x00, 0x00,
- 0x0d, 0x41, 0x9a, 0x18, 0x49, 0xa8, 0x41, 0x6c,
- 0x99, 0x4c, 0x0f, 0xff, 0x92, 0x81, 0x00, 0x00,
- 0x00, 0x09, 0x41, 0x9e, 0x36, 0x45, 0x15, 0x2c,
- 0x57, 0xe6, 0x80, 0x00, 0x00, 0x00, 0x08, 0x01,
- 0x9e, 0x55, 0x74, 0x47, 0x7f, 0xe8, 0x81, 0x00,
- 0x00, 0x00, 0x08, 0x01, 0x9e, 0x57, 0x6a, 0x47,
- 0x7f, 0xe8, 0x81, 0x00, 0x00, 0x00, 0x0d, 0x41,
- 0x9a, 0x5c, 0x49, 0xa8, 0x41, 0x6c, 0x99, 0x4c,
- 0x0a, 0xff, 0x97, 0x80, 0x00, 0x00, 0x00, 0x09,
- 0x41, 0x9e, 0x7a, 0x45, 0x15, 0x2c, 0x57, 0xe6,
- 0x81, 0x00, 0x00, 0x00, 0x08, 0x01, 0x9e, 0x99,
- 0x74, 0x47, 0x7f, 0xe8, 0x80, 0x00, 0x00, 0x00,
- 0x08, 0x01, 0x9e, 0x9b, 0x6a, 0x47, 0x7f, 0xe8,
- 0x81, 0x00, 0x00, 0x00, 0x0d, 0x41, 0x9a, 0x80,
- 0x49, 0xa8, 0x41, 0x6c, 0x99, 0x4c, 0x09, 0x3f,
- 0x9c, 0x81, 0x00, 0x00, 0x00, 0x09, 0x41, 0x9e,
- 0xbe, 0x45, 0x15, 0x2c, 0x57, 0xe6, 0x80, 0x00,
- 0x00, 0x00, 0x08, 0x01, 0x9e, 0xdd, 0x74, 0x47,
- 0x7f, 0xe8, 0x80, 0x00, 0x00, 0x00, 0x08, 0x01,
- 0x9e, 0xdf, 0x6a, 0x47, 0x7f, 0xe8, 0x81, 0x00,
- 0x00, 0x00, 0x0d, 0x41, 0x9a, 0xc4, 0x49, 0xa8,
- 0x41, 0x6c, 0x99, 0x4c, 0x08, 0xaf, 0xb3, 0x80,
- 0x00, 0x00, 0x00, 0x09, 0x41, 0x9e, 0xe2, 0x45,
- 0x15, 0x2c, 0x57, 0xe6, 0x81, 0x00, 0x00, 0x00,
- 0x08, 0x01, 0x9f, 0x01, 0x74, 0x47, 0x7f, 0xe8,
- 0x80, 0x00, 0x00, 0x00, 0x08, 0x01, 0x9f, 0x03,
- 0x6a, 0x47, 0x7f, 0xe8, 0x81, 0x00, 0x00, 0x00,
- 0x0d, 0x41, 0x9b, 0x05, 0x49, 0xa8, 0x41, 0x6c,
- 0x99, 0x4c, 0x08, 0xef, 0xbe, 0x81, 0x00, 0x00,
- 0x0a, 0xa6, 0x6d, 0x6f, 0x6f, 0x76, 0x00, 0x00,
- 0x00, 0x6c, 0x6d, 0x76, 0x68, 0x64, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x03, 0xe8, 0x00, 0x00,
- 0x15, 0x9e, 0x00, 0x01, 0x00, 0x00, 0x01, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x02, 0x00, 0x00, 0x09, 0xd0, 0x74, 0x72,
- 0x61, 0x6b, 0x00, 0x00, 0x00, 0x5c, 0x74, 0x6b,
- 0x68, 0x64, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x15, 0x9e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x04,
- 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x24, 0x65, 0x64, 0x74, 0x73, 0x00, 0x00,
- 0x00, 0x1c, 0x65, 0x6c, 0x73, 0x74, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00,
- 0x15, 0x9e, 0x00, 0x00, 0x04, 0x00, 0x00, 0x01,
- 0x00, 0x00, 0x00, 0x00, 0x09, 0x48, 0x6d, 0x64,
- 0x69, 0x61, 0x00, 0x00, 0x00, 0x20, 0x6d, 0x64,
- 0x68, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x3c, 0x00, 0x00, 0x01, 0x4c, 0x00, 0x55, 0xc4,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x31, 0x68, 0x64,
- 0x6c, 0x72, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x76, 0x69, 0x64, 0x65, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x43, 0x6f, 0x72, 0x65, 0x20, 0x4d,
- 0x65, 0x64, 0x69, 0x61, 0x20, 0x56, 0x69, 0x64,
- 0x65, 0x6f, 0x00, 0x00, 0x00, 0x08, 0xef, 0x6d,
- 0x69, 0x6e, 0x66, 0x00, 0x00, 0x00, 0x14, 0x76,
- 0x6d, 0x68, 0x64, 0x00, 0x00, 0x00, 0x01, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x24, 0x64, 0x69, 0x6e, 0x66, 0x00,
- 0x00, 0x00, 0x1c, 0x64, 0x72, 0x65, 0x66, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,
- 0x00, 0x00, 0x0c, 0x75, 0x72, 0x6c, 0x20, 0x00,
- 0x00, 0x00, 0x01, 0x00, 0x00, 0x08, 0xaf, 0x73,
- 0x74, 0x62, 0x6c, 0x00, 0x00, 0x00, 0x97, 0x73,
- 0x74, 0x73, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x87, 0x61,
- 0x76, 0x63, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x02, 0x00,
- 0x48, 0x00, 0x00, 0x00, 0x48, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0xff,
- 0xff, 0x00, 0x00, 0x00, 0x31, 0x61, 0x76, 0x63,
- 0x43, 0x01, 0x64, 0x00, 0x0a, 0xff, 0xe1, 0x00,
- 0x18, 0x67, 0x64, 0x00, 0x0a, 0xac, 0xd9, 0x5f,
- 0x9e, 0x22, 0x10, 0x00, 0x00, 0x03, 0x00, 0x10,
- 0x00, 0x00, 0x03, 0x03, 0xc0, 0xf1, 0x22, 0x59,
- 0x60, 0x01, 0x00, 0x06, 0x68, 0xeb, 0xe3, 0xcb,
- 0x22, 0xc0, 0x00, 0x00, 0x00, 0x18, 0x73, 0x74,
- 0x74, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x00,
- 0x02, 0x00, 0x00, 0x00, 0x00, 0x14, 0x73, 0x74,
- 0x73, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00,
- 0x05, 0x08, 0x63, 0x74, 0x74, 0x73, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x9f, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00,
- 0x00, 0x02, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
- 0x00, 0x03, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
- 0x00, 0x02, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00,
- 0x00, 0x02, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00,
- 0x00, 0x02, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00,
- 0x00, 0x02, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
- 0x00, 0x1c, 0x73, 0x74, 0x73, 0x63, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x00,
- 0x00, 0x01, 0x00, 0x00, 0x02, 0xac, 0x73, 0x74,
- 0x73, 0x7a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x00,
- 0x02, 0xd6, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00,
- 0x00, 0x0c, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00,
- 0x00, 0x0c, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00,
- 0x00, 0x0d, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00,
- 0x00, 0x0c, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00,
- 0x00, 0x0d, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00,
- 0x00, 0x0c, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00,
- 0x00, 0x0d, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00,
- 0x00, 0x0c, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00,
- 0x00, 0x0d, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00,
- 0x00, 0x0c, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00,
- 0x00, 0x0d, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00,
- 0x00, 0x0c, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00,
- 0x00, 0x0d, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00,
- 0x00, 0x0c, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00,
- 0x00, 0x0d, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00,
- 0x00, 0x0c, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00,
- 0x00, 0x0d, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00,
- 0x00, 0x0c, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00,
- 0x00, 0x0d, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00,
- 0x00, 0x0d, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00,
- 0x00, 0x0d, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00,
- 0x00, 0x0d, 0x00, 0x00, 0x00, 0x12, 0x00, 0x00,
- 0x00, 0x0d, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00,
- 0x00, 0x11, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00,
- 0x00, 0x0c, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00,
- 0x00, 0x10, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00,
- 0x00, 0x13, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00,
- 0x00, 0x0c, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00,
- 0x00, 0x12, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00,
- 0x00, 0x1b, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00,
- 0x00, 0x12, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00,
- 0x00, 0x0c, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00,
- 0x00, 0x11, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00,
- 0x00, 0x0c, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00,
- 0x00, 0x11, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00,
- 0x00, 0x0c, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00,
- 0x00, 0x18, 0x00, 0x00, 0x00, 0x0e, 0x00, 0x00,
- 0x00, 0x0c, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00,
- 0x00, 0x23, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00,
- 0x00, 0x15, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00,
- 0x00, 0x0c, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00,
- 0x00, 0x0d, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00,
- 0x00, 0x0c, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00,
- 0x00, 0x0d, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00,
- 0x00, 0x13, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00,
- 0x00, 0x0c, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00,
- 0x00, 0x11, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00,
- 0x00, 0x0c, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00,
- 0x00, 0x0d, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00,
- 0x00, 0x0c, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00,
- 0x00, 0x0d, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00,
- 0x00, 0x0c, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00,
- 0x00, 0x0d, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00,
- 0x00, 0x0c, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00,
- 0x00, 0x0d, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00,
- 0x00, 0x0c, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00,
- 0x00, 0x0d, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00,
- 0x00, 0x0c, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00,
- 0x00, 0x0d, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00,
- 0x00, 0x0c, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00,
- 0x00, 0x0d, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00,
- 0x00, 0x0c, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00,
- 0x00, 0x0d, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00,
- 0x00, 0x0c, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00,
- 0x00, 0x0d, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00,
- 0x00, 0x0c, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00,
- 0x00, 0x0d, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00,
- 0x00, 0x0c, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00,
- 0x00, 0x0d, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00,
- 0x00, 0x0c, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00,
- 0x00, 0x0d, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00,
- 0x00, 0x0c, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00,
- 0x00, 0x0d, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00,
- 0x00, 0x0c, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00,
- 0x00, 0x0d, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00,
- 0x00, 0x0c, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00,
- 0x00, 0x0d, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00,
- 0x00, 0x0c, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00,
- 0x00, 0x0d, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00,
- 0x00, 0x0c, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00,
- 0x00, 0x0d, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00,
- 0x00, 0x0c, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00,
- 0x00, 0x14, 0x73, 0x74, 0x63, 0x6f, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00,
- 0x00, 0x30, 0x00, 0x00, 0x00, 0x62, 0x75, 0x64,
- 0x74, 0x61, 0x00, 0x00, 0x00, 0x5a, 0x6d, 0x65,
- 0x74, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x21, 0x68, 0x64, 0x6c, 0x72, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x64,
- 0x69, 0x72, 0x61, 0x70, 0x70, 0x6c, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x2d, 0x69, 0x6c, 0x73, 0x74, 0x00,
- 0x00, 0x00, 0x25, 0xa9, 0x74, 0x6f, 0x6f, 0x00,
- 0x00, 0x00, 0x1d, 0x64, 0x61, 0x74, 0x61, 0x00,
- 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x4c,
- 0x61, 0x76, 0x66, 0x35, 0x38, 0x2e, 0x32, 0x30,
- 0x2e, 0x31, 0x30, 0x30
- ]
- }
- }]
- }
- })
-
- done()
- })
-
- browser.expect.element('#output').text.to.contain('IPFS: Added ')
-
- browser.click('#gobutton')
- .executeAsync(function (done) {
- const video = document.getElementById('video')
- video.addEventListener('canplay', function () {
- done()
- })
-
- setTimeout(() => {
- done('Did not start streaming video after 1m')
- }, 60000)
- }, [], (result) => {
- if (result.value) {
- throw new Error(result.value)
- }
- })
-
- browser.end()
- }
-}
-
-
diff --git a/examples/browser-readablestream/utils.js b/examples/browser-readablestream/utils.js
deleted file mode 100644
index f01bd38689..0000000000
--- a/examples/browser-readablestream/utils.js
+++ /dev/null
@@ -1,139 +0,0 @@
-'use strict'
-
-const log = (line) => {
- if (!line) return
-
- const output = document.getElementById('output')
- let message
-
- if (line.message) {
- message = `Error: ${line.message.toString()}`
- console.error(line)
- } else {
- message = line
- }
-
- if (message) {
- const node = document.createTextNode(`${message}\r\n`)
- output.appendChild(node)
-
- output.scrollTop = output.offsetHeight
-
- return node
- }
-}
-
-const dragDrop = (ipfs) => {
- const container = document.querySelector('#container')
-
- container.ondragover = (event) => {
- event.preventDefault()
- }
-
- container.ondrop = async (event) => {
- event.preventDefault()
-
- const files = Array.from(event.dataTransfer.items)
- .filter(item => item.kind === 'file')
- .map(item => item.getAsFile())
- .map(file => {
- return {
- path: file.name,
- content: file
- }
- })
-
- const progress = log(`IPFS: Adding...`)
-
- for await (const added of ipfs.addAll(files, {
- progress: (addedBytes) => {
- progress.textContent = `IPFS: Adding ${addedBytes} bytes\r\n`
- }
- })) {
- log(`IPFS: Added ${added.cid}`)
-
- document.querySelector('#cid').value = added.cid.toString()
- }
-
- if (event.dataTransfer.items && event.dataTransfer.items.clear) {
- event.dataTransfer.items.clear()
- }
-
- if (event.dataTransfer.clearData) {
- event.dataTransfer.clearData()
- }
- }
-}
-
-module.exports.statusMessages = (stream) => {
- let time = 0
- const timeouts = [
- 'Stream: Still loading data from IPFS...',
- 'Stream: This can take a while depending on content availability',
- 'Stream: Hopefully not long now',
- 'Stream: *Whistles absentmindedly*',
- 'Stream: *Taps foot*',
- 'Stream: *Looks at watch*',
- 'Stream: *Stares at floor*',
- 'Stream: *Checks phone*',
- 'Stream: *Stares at ceiling*',
- 'Stream: Got anything nice planned for the weekend?'
- ].map(message => {
- time += 5000
-
- return setTimeout(() => {
- log(message)
- }, time)
- })
-
- stream.once('data', () => {
- log('Stream: Started receiving data')
- timeouts.forEach(clearTimeout)
- })
- stream.once('error', () => {
- timeouts.forEach(clearTimeout)
- })
-}
-
-const createVideoElement = () => {
- const videoElement = document.getElementById('video')
- videoElement.addEventListener('loadedmetadata', () => {
- videoElement.play()
- .catch(log)
- })
-
- const events = [
- 'playing',
- 'waiting',
- 'seeking',
- 'seeked',
- 'ended',
- 'loadedmetadata',
- 'loadeddata',
- 'canplay',
- 'canplaythrough',
- 'durationchange',
- 'play',
- 'pause',
- 'suspend',
- 'emptied',
- 'stalled',
- 'error',
- 'abort'
- ]
- events.forEach(event => {
- videoElement.addEventListener(event, () => {
- log(`Video: ${event}`)
- })
- })
-
- videoElement.addEventListener('error', () => {
- log(videoElement.error)
- })
-
- return videoElement
-}
-
-module.exports.log = log
-module.exports.dragDrop = dragDrop
-module.exports.createVideoElement = createVideoElement
diff --git a/examples/browser-readablestream/webpack.config.js b/examples/browser-readablestream/webpack.config.js
deleted file mode 100644
index f4865c244e..0000000000
--- a/examples/browser-readablestream/webpack.config.js
+++ /dev/null
@@ -1,33 +0,0 @@
-'use strict'
-
-const path = require('path')
-const webpack = require('webpack')
-const NodePolyfillPlugin = require('node-polyfill-webpack-plugin')
-const HtmlWebpackPlugin = require('html-webpack-plugin')
-
-module.exports = {
- devtool: 'eval',
- entry: [
- './index.js'
- ],
- output: {
- path: path.join(__dirname, 'dist'),
- filename: 'bundle.js'
- },
- plugins: [
- new HtmlWebpackPlugin({
- title: 'IPFS Videostream example',
- template: 'index.html'
- }),
- // fixes Module not found: Error: Can't resolve 'stream' in '.../node_modules/nofilter/lib'
- new NodePolyfillPlugin(),
- // Note: stream-browserify has assumption about `Buffer` global in its
- // dependencies causing runtime errors. This is a workaround to provide
- // global `Buffer` until https://github.com/isaacs/core-util-is/issues/29
- // is fixed.
- new webpack.ProvidePlugin({
- Buffer: ['buffer', 'Buffer'],
- process: 'process/browser'
- })
- ]
-}
diff --git a/examples/browser-script-tag/CHANGELOG.md b/examples/browser-script-tag/CHANGELOG.md
deleted file mode 100644
index eaada38ac8..0000000000
--- a/examples/browser-script-tag/CHANGELOG.md
+++ /dev/null
@@ -1,25 +0,0 @@
-# Change Log
-
-All notable changes to this project will be documented in this file.
-See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
-
-## [1.1.1](https://github.com/ipfs/js-ipfs/compare/example-browser-script-tag@1.1.0...example-browser-script-tag@1.1.1) (2020-04-08)
-
-**Note:** Version bump only for package example-browser-script-tag
-
-
-
-
-
-# 1.1.0 (2020-03-31)
-
-
-### Bug Fixes
-
-* examples after files API refactor ([#1740](https://github.com/ipfs/js-ipfs/issues/1740)) ([34ec036](https://github.com/ipfs/js-ipfs/commit/34ec036b0df9563a014c1348f0a056c1f98aadad))
-
-
-### Features
-
-* implementing the new streaming interfaces ([#1086](https://github.com/ipfs/js-ipfs/issues/1086)) ([2c4b8b3](https://github.com/ipfs/js-ipfs/commit/2c4b8b325b94d4506b87441f06c5d29bb6f37f72))
-* mfs implementation ([#1360](https://github.com/ipfs/js-ipfs/issues/1360)) ([871d24e](https://github.com/ipfs/js-ipfs/commit/871d24e35c402956e2297350342268528c3192db)), closes [#1425](https://github.com/ipfs/js-ipfs/issues/1425)
diff --git a/examples/browser-script-tag/README.md b/examples/browser-script-tag/README.md
deleted file mode 100644
index 4439cf96ff..0000000000
--- a/examples/browser-script-tag/README.md
+++ /dev/null
@@ -1,24 +0,0 @@
-# Use IPFS in the browser with `
-```
-
-This exposes a global `Ipfs`; you can get a node by making a `new Ipfs()`.
-
-## Before you start
-
-First clone this repo, install dependencies in the project root and build the project.
-
-```console
-$ git clone https://github.com/ipfs/js-ipfs.git
-$ cd js-ipfs
-$ npm install
-$ npm run build
-```
-
-## Running the example
-
-See `index.html` for a working example.
diff --git a/examples/browser-script-tag/index.html b/examples/browser-script-tag/index.html
deleted file mode 100644
index a8681fa3a1..0000000000
--- a/examples/browser-script-tag/index.html
+++ /dev/null
@@ -1,53 +0,0 @@
-
-
-
- IPFS in the Browser
-
-
-
-
- IPFS in the Browser
- This page creates an IPFS node in your browser and drops it into the global Javascript namespace as node . Open the console to play around with it.
- Note that opening two tabs of this page in the same browser won't work well, because they will share node configuration. You'll end up trying to run two instances of the same node, with the same private key and identity, which is a Bad Idea.
- Node status: offline
-
- Some suggestions
-
- Try adding a new file:
-
-
- async function addFile () {
- const { cid } = await node.add('Hello world!')
- console.log('successfully stored', cid)
- }
-
- addFile()
-
-
- You can cat that same file. If you used the exact same string as above ('Hello world!') you should have an hash like this: 'QmQzCQn4puG4qu8PVysxZmscmQ5vT1ZXpqo7f58Uh9QfyY'
-
-
- async function catFile () {
- for await (const data of node.cat('QmQzCQn4puG4qu8PVysxZmscmQ5vT1ZXpqo7f58Uh9QfyY')) {
- console.log(data.toString())
- }
- }
-
- catFile()
-
-
-
diff --git a/examples/browser-script-tag/package.json b/examples/browser-script-tag/package.json
deleted file mode 100644
index 08bd48b443..0000000000
--- a/examples/browser-script-tag/package.json
+++ /dev/null
@@ -1,21 +0,0 @@
-{
- "name": "example-browser-script-tag",
- "description": "Using IPFS in the browser via a script tag",
- "main": "index.html",
- "version": "1.1.1",
- "private": true,
- "scripts": {
- "serve": "http-server . -a 127.0.0.1 -p 8888",
- "start": "npm run serve",
- "test": "test-ipfs-example"
- },
- "keywords": [],
- "license": "MIT",
- "devDependencies": {
- "http-server": "^0.12.3",
- "test-ipfs-example": "^3.0.0"
- },
- "dependencies": {
- "ipfs": "^0.55.3"
- }
-}
diff --git a/examples/browser-script-tag/test.js b/examples/browser-script-tag/test.js
deleted file mode 100644
index fdbd20d070..0000000000
--- a/examples/browser-script-tag/test.js
+++ /dev/null
@@ -1,28 +0,0 @@
-'use strict'
-
-module.exports = {
- 'Browser script tag': function (browser) {
- browser
- .url(process.env.IPFS_EXAMPLE_TEST_URL)
- .executeAsync(function (done) {
- let count = 0
- const interval = setInterval(() => {
- if (count === 10 || window.node) {
- clearInterval(interval)
-
- done(window.node ? null : 'Did not load node after 10s')
- }
-
- count++
- }, 1000)
- }, [], (result) => {
- if (result.value) {
- throw new Error(result.value)
- }
- })
-
- browser.expect.element('#status').text.to.contain('Node status: online')
-
- browser.end()
- }
-}
diff --git a/examples/browser-service-worker/README.md b/examples/browser-service-worker/README.md
deleted file mode 100644
index a0ae63805e..0000000000
--- a/examples/browser-service-worker/README.md
+++ /dev/null
@@ -1,92 +0,0 @@
-# Using js-ipfs node in [SharedWorker][] from [ServiceWorker][]
-
-> In this example, you will find boilerplate code you can use to set up an IPFS
-> node in a [SharedWorker][] and use it from a [ServiceWorker][].
-
-## General Overview
-
-### `src/main.js`
-
-Module is loaded in the main thread (DOM window) and is responsible for wiring
-all the pieces together:
-
-1. Activates a [SharedWorker][] that runs an IPFS node.
-2. Registers a [ServiceWorker][] to serve IPFS content from.
-3. Listens to [MessagePort][] requests from the [ServiceWorker][] and responds
- back with a [MessagePort][] of the [SharedWorker][], enabling
- it to interact with shaerd IPFS node.
-
-### `src/worker.js`
-
-Module is loaded in the [SharedWorker][]. It demonstrates how to setup the IPFS
-node such that it can be used in other browsing contexts.
-
-### `src/service.js`
-
-Module is loaded in the [ServiceWorker][] and responds to all the requests from
-the page. It recognizes four different request routes:
-
-1. Routes `/ipfs/...`, `/ipns/...` are served html pages that:
-
- - Contain a full page iframe that has an `src` derived from request path e.g.:
-
- ```
- /ipfs/Qm...hash/file/name -> /view/Qm...hash/file/name
- ```
- - `src/main.js` script loaded in it.
-
- This way when request from `/view/Qm..hash/file/name` arrives [ServiceWorker][]
- can obtain a [MessagePort][] for the [SharedWorker][] by requesting it from
- the iframe container.
-
-2. Routes `/view/ipfs/...` and are served corresponding content from IPFS. On
- such request message is send to an iframe container (That is why `/ipfs/...`
- and `/ipns/...` routes served `iframe` and `src/main.js`), through which
- [MessagePort][] for the [SharedWorker][] is obtained and used to retrieve
- content from the shared IPFS node and served back.
-
- > There is a stub for `/view/ipns/...` route, which is left as an excercise
- > for the reader to fill.
-
-3. All other routes are served by fetchging it from the network.
-
-
-## Before you start
-
-First clone this repo, cd into the example directory and install the dependencies
-
-```bash
-git clone https://github.com/ipfs/js-ipfs.git
-cd js-ipfs/examples/browser-service-worker
-npm install
-```
-
-## Running the example
-
-Run the following command within this folder:
-
-```bash
-npm start
-```
-
-Now open your browser at `http://localhost:3000`
-
-You should see the following:
-
-
-
-If you navigate to the following address `http://localhost:3000/ipfs/bafybeicqzoixu6ivztffjy4bktwxy6lxaxkvnavkya7kfgwyhx4bund2ga/` it should load a
-page from ipfs and appear as:
-
-
-
-### Run tests
-
-```bash
-npm test
-```
-
-
-[SharedWorker]:https://developer.mozilla.org/en-US/docs/Web/API/SharedWorker
-[ServiceWorker]:https://developer.mozilla.org/en-US/docs/Web/API/Service_Worker_API
-[MessagePort]:https://developer.mozilla.org/en-US/docs/Web/API/MessagePort
diff --git a/examples/browser-service-worker/index-view.png b/examples/browser-service-worker/index-view.png
deleted file mode 100644
index b3e8b42026..0000000000
Binary files a/examples/browser-service-worker/index-view.png and /dev/null differ
diff --git a/examples/browser-service-worker/index.html b/examples/browser-service-worker/index.html
deleted file mode 100644
index 79c564a98e..0000000000
--- a/examples/browser-service-worker/index.html
+++ /dev/null
@@ -1,119 +0,0 @@
-
-
-
- IPFS Viewer
-
-
-
-
-
-
-
-
-
-
-
diff --git a/examples/browser-service-worker/package.json b/examples/browser-service-worker/package.json
deleted file mode 100644
index 7a37f24c39..0000000000
--- a/examples/browser-service-worker/package.json
+++ /dev/null
@@ -1,34 +0,0 @@
-{
- "name": "example-browser-service-worker",
- "description": "IPFS with service worker",
- "version": "1.0.0",
- "private": true,
- "scripts": {
- "clean": "rm -rf ./dist",
- "build": "webpack",
- "start": "webpack-dev-server",
- "test": "test-ipfs-example"
- },
- "license": "MIT",
- "keywords": [],
- "devDependencies": {
- "@babel/core": "^7.13.10",
- "@babel/preset-env": "^7.13.12",
- "babel-loader": "^8.2.2",
- "copy-webpack-plugin": "^8.1.0",
- "test-ipfs-example": "^3.0.0",
- "webpack": "^5.28.0",
- "webpack-cli": "^4.5.0",
- "webpack-dev-server": "^3.11.2"
- },
- "dependencies": {
- "ipfs": "^0.55.3",
- "ipfs-message-port-client": "^0.6.3",
- "ipfs-message-port-protocol": "^0.7.2",
- "ipfs-message-port-server": "^0.7.2",
- "process": "0.11.10"
- },
- "browserslist": [
- "last 2 versions and not dead and > 2%"
- ]
-}
diff --git a/examples/browser-service-worker/page-view.png b/examples/browser-service-worker/page-view.png
deleted file mode 100644
index 5bc0d8abe3..0000000000
Binary files a/examples/browser-service-worker/page-view.png and /dev/null differ
diff --git a/examples/browser-service-worker/src/main.js b/examples/browser-service-worker/src/main.js
deleted file mode 100644
index b25dc6e863..0000000000
--- a/examples/browser-service-worker/src/main.js
+++ /dev/null
@@ -1,87 +0,0 @@
-'use strict'
-
-// This is an entry point to our program.
-const main = async () => {
- // We start a shared worker where IPFS node is loaded.
- const worker = createIPFSWorker()
- // @ts-ignore - Store worker in the window so that it's available in console.
- window.worker = createIPFSWorker()
-
- // Service workers do not have access to the `SharedWorker` API
- // (see https://github.com/w3c/ServiceWorker/issues/678)
- // To overcome that limitation the page will listen for the service worker message
- // and provide it with a message port to the shared worker, which will enable
- // it to use our (shared) IPFS node.
- navigator.serviceWorker.onmessage = onServiceWorkerMessage
-
- // @ts-ignore - register expects string but weback requires this URL hack.
- await navigator.serviceWorker.register(new URL('./service.js', import.meta.url), { scope: '/' })
-
- await navigator.serviceWorker.ready
-
- // This is just for testing, lets us know when SW is ready.
- const meta = document.createElement("meta")
- meta.name = "sw-ready"
- document.head.appendChild(meta)
-
- // URLs like `localhost:3000/ipfs/Qmf412jQZiuVUtdgnB36FXFX7xg5V6KEbSJ4dpQuhkLyfD`
- // are loaded from service worker. However it could be that such a URL is loaded
- // before the service worker was registered in which case our server just loads a blank
- // page (that doesn't have data-viewer attribute). If that is the case we load
- // the actual IPFS content after the SW is ready.
- if (document.documentElement.dataset.viewer == null) {
- load(location.pathname)
- }
-}
-
-/**
- * @param {string} path
- */
-const load = async (path) => {
- const [,protocol] = path.split('/')
- switch (protocol) {
- case 'ipfs':
- case 'ipns': {
- document.body.innerHTML = ``
- }
- }
-}
-
-/**
- * Handles ipfs message port request from service worker and
- * responds to it with it.
- *
- * @param {MessageEvent} event
- */
-const onServiceWorkerMessage = (event) => {
- /** @type {null|ServiceWorker} */
- const serviceWorker = (event.source)
- if (serviceWorker == null) return
- switch (event.data.method) {
- case 'ipfs-message-port': {
- // Receives request from service worker, creates a new shared worker and
- // responds back with the message port.
- // Note: MessagePort can be transferred only once which is why we need to
- // create a SharedWorker each time. However a ServiceWorker is only created
- // once (in main function) all other creations just create port to it.
- const worker = createIPFSWorker()
- return serviceWorker.postMessage({
- method: 'ipfs-message-port',
- id: event.data.id,
- port: worker.port
- }, [worker.port])
- }
- }
-}
-
-/**
- * Creates a shared worker instance that exposes JS-IPFS node over MessagePort.
- * @returns {SharedWorker}
- */
-const createIPFSWorker = () => new SharedWorker(
- // @ts-ignore - Constructor takes string but webpack needs URL
- new URL('./worker.js', import.meta.url),
- 'IPFS'
-)
-
-main()
diff --git a/examples/browser-service-worker/src/service.js b/examples/browser-service-worker/src/service.js
deleted file mode 100644
index 16e5e9fae1..0000000000
--- a/examples/browser-service-worker/src/service.js
+++ /dev/null
@@ -1,372 +0,0 @@
-// @ts-check
-/* eslint-env browser, serviceworker */
-import IPFS from "ipfs-message-port-client"
-import { defer, selectClient, toReadableStream } from "./service/util"
-
-/**
- * @param {LifecycleEvent} event
- */
-const oninstall = async (event) => {
- // We don't want to wait for old workers to be deactivated before the
- // new one gets activated
- event.waitUntil(event.target.skipWaiting())
-}
-
-/**
- * @param {LifecycleEvent} event
- */
-const onactivate = async (event) => {
- // We want to start handling requests right away, so that requests from the
- // very first page will be handled by service worker. Which is why we claim
- // clients.
- event.waitUntil(event.target.clients.claim())
-}
-
-/**
- * @param {Fetch} event
- */
-const onfetch = (event) => {
- const url = new URL(event.request.url)
- switch (url.origin) {
- // Our service worker only serves pages for its own page origin
- case location.origin: {
- const [,protocol] = url.pathname.split('/')
- switch (protocol) {
- // If requests are for `/ipfs/...` or `/ipns/` URLs we respond with
- // a content viewer which is a page containing an iframe
- // for actual content like
- // and a script that we can talk to in order to obtain a connection to the shared IPFS node via a MessagePort.
- // This might be confusing but this wrapper page is what allows this
- // service worker to obtain a MessagePort, otherwise there may not even
- // be a page that will start a shared worker, nor a way to get a message
- // port for it.
- case 'ipfs':
- case 'ipns':
- return event.respondWith(fetchViewer({ url }))
- // If requests are for `/view/...` URL those are requests from iframes
- // for the content.
- case 'view':
- return event.respondWith(fetchContent({
- event,
- path: url.pathname.slice(protocol.length + 1)
- }))
- // Anything else might be for scripts, source maps etc.. we just fetch
- // those from network
- default:
- return event.respondWith(fetch(event.request))
- }
- }
- // Requests to other origins are fetched from the network.
- default: {
- return event.respondWith(fetch(event.request))
- }
- }
-}
-
-/**
- * Generates a simple page which:
- *
- * 1. Embeds JS that will provide us message port on request.
- * 2. Embeds iframe to load an actual content.
- *
- * @param {Object} options
- * @param {URL} options.url
- */
-const fetchViewer = async ({ url }) => {
- const body = new Blob([`
-
- ${url.pathname}
-
-
-
-
-
-
-
-`], { type: 'text/html'})
- return new Response(body, {
- status: 200
- })
-}
-
-
-
-/**
- * Fetches content from the IPFS and responds with it.
- *
- * @param {Object} options
- * @param {Fetch} options.event
- * @param {string} options.path
- */
-const fetchContent = async ({ event, path }) => {
- const [,protocol] = path.split('/')
- switch (protocol) {
- case 'ipns': {
- return await fetchIPNSContent({
- event,
- path
- })
- }
- case 'ipfs':
- return await fetchIPFSContent({
- event,
- path
- })
- default: {
- const response = await unsupportedProtocol(protocol)
- return response
- }
- }
-}
-
-/**
- * @param {Object} options
- * @param {Fetch} options.event
- * @param {string} options.path
- */
-const fetchIPNSContent = async ({/* path, event */}) => {
- // Challenge: Implement IPNS support.
- return new Response(`
-
- IPNS protocol support is not implemented
- It is left as an excercise to the viewer
-
-`, {
- statusText: "IPNS support is not implemented",
- status: 502
- })
-}
-
-
-/**
- * @param {Object} options
- * @param {Fetch} options.event
- * @param {string} options.path
- */
-const fetchIPFSContent = async ({ event, path }) => {
- // Obtains IPFS instance
- const ipfs = await createIPFSClient(event)
- try {
- const stat = await ipfs.files.stat(path)
- switch (stat.type) {
- case 'file': {
- return await fetchIPFSFile(ipfs, path)
- }
- case 'directory': {
- if (!path.endsWith('/')) {
- return Response.redirect(`${event.request.url}/`)
- } else {
- // try index.html file in this directory if there is such file
- // render it otherwise render directory
- const index = `${path}index.html`
- const stat = await ipfs.files.stat(index).catch(() => ({ type: null }))
- return stat.type === 'file'
- ? fetchIPFSFile(ipfs, index)
- : fetchIPFSDirectory(ipfs, path)
- }
- }
- default: {
- // If non file redirect to ipld explorer
- return Response.redirect(`https://explore.ipld.io/#/explore${path}`)
- }
- }
- } catch ({ message }) {
- console.error(message)
-
- // If such link does not exists respond with 404
- if (message.startsWith('no link named') || message.includes('does not exist')) {
- return new Response(message, {
- statusText: message,
- status: 404
- })
- }
-
- // If problem with CID respond with 400
- if (message.includes('invalid')) {
- return new Response(message, {
- statusText: message,
- status: 400
- })
- }
-
- // Otherwise respond with 500
- return new Response(message, {
- statusText: message,
- status: 500
- })
- }
-}
-
-/**
- * @param {IPFS} ipfs
- * @param {string} path
- */
-const fetchIPFSFile = async (ipfs, path) => {
- const content = ipfs.cat(path)
- const body = toReadableStream(content)
- // Note: Browsers by default perform content sniffing to do a content type
- // decetion https://developer.mozilla.org/en-US/docs/Mozilla/How_Mozilla_determines_MIME_Types
- // but it is limited to web relevant content and seems to exclude svg.
- // Here we fix svg support that otherwise breaks many pages doing proper content
- // type detection is left as an excercise to the reader.
- const contentType = path.endsWith('.svg') ? { 'content-type': 'image/svg+xml' } : null
-
- return new Response(body, {
- status: 200,
- headers: {
- ...contentType
- }
- })
-}
-
-/**
- * @param {IPFS} ipfs
- * @param {string} path
- */
-const fetchIPFSDirectory = async (ipfs, path) => {
- return new Response(toReadableStream(renderDirectory(ipfs, path)), {
- headers: {
- 'content-type': 'text/html'
- },
- status: 200
- })
-}
-
-/**
- * @param {IPFS} ipfs
- * @param {string} path
- * @param {number} [limit=174]
- * @returns {AsyncIterable}
- */
-const renderDirectory = async function * (ipfs, path, limit = 64) {
- const encoder = new TextEncoder()
- yield encoder.encode(`Index of ${path}`)
-
- for await (const entry of ipfs.ls(path)) {
- yield encoder.encode(renderDirectoryEntry(path, entry))
- if (--limit < 0) {
- break
- }
- }
-
- yield encoder.encode(` ${limit < 0 ? PAGINATION_NOTE : ''}`)
-}
-
-const PAGINATION_NOTE = 'Directory has too many entries Implementing a pagination is left as an excercise to the viewer
'
-
-/**
- * @param {string} base
- * @param {import('ipfs-message-port-client/src/core').LsEntry} entry
- */
-const renderDirectoryEntry = (base, entry) =>
-`
-
- ${entry.cid.toString()}
- ${JSON.stringify(entry, null, 2)}
- `
-
-
-/**
- * @param {string} protocol
- */
-const unsupportedProtocol = async (protocol) => {
- return new Response(`
-
- Protocol ${protocol} is not supported
-
-`, {
- statusText: `Unsupported protocol ${protocol}`,
- status: 405
-})
-}
-
-
-/**
- * Obtains MessagePort for the SharedWorker operating IPFS node and
- * creates a client for it.
- *
- * @param {Fetch} context
- */
-const createIPFSClient = async (context) => {
- // Selects a service worker client that can be used to obtain a message port
- // from, then sends a request to it and once a response is obtained, creates a
- // IPFS client and returns it
- const client = await selectClient(context.target)
- const port = await requestIPFSPort(client)
- return IPFS.from(port)
-}
-
-
-
-
-/**
- * Sends a message prot request to the window client and waits for the response.
- * Returns promise for the message port it will receive.
- *
- * @param {WindowClient} client
- * @returns {Promise}
- */
-const requestIPFSPort = (client) => {
- // We might receive multiple concurrent requests from the same client (e.g.
- // images, scripts, stylesheets for the page) to avoid creating a port for
- // each request we use a little table keyed by client id instead.
- const request = portRequests[client.id]
- if (request == null) {
- const request = defer()
- portRequests[client.id] = request
- client.postMessage({
- method: 'ipfs-message-port',
- id: client.id
- })
- return request.promise
- } else {
- return request.promise
- }
-}
-
-
-/** @type {Record, resolve(port:MessagePort):void, reject(error:Error):void }>} */
-const portRequests = Object.create(null)
-
-/**
- * Listens to the messages from the clients if it is response to pending message
- * port request resolves it.
- *
- * @param {MessageEvent} event
- */
-const onmessage = ({data}) => {
- if (data) {
- const request = portRequests[data.id]
- if (request != null) {
- delete portRequests[data.id]
- if (data.port instanceof MessagePort) {
- request.resolve(data.port)
- } else {
- request.reject(new Error(data.error))
- }
- }
- }
-}
-
-
-
-/**
- * Sets up service worker event handlers.
- * @param {any} self
- */
-const setup = (self) => {
- self.oninstall = oninstall
- self.onactivate = onactivate
- self.onfetch = onfetch
- self.onmessage = onmessage
-}
-
-setup(self)
-
-
-/**
- * @typedef {FetchEvent & { target: Scope }} Fetch
- * @typedef {ExtendableEvent & { target: Scope }} LifecycleEvent
- * @typedef {ServiceWorkerGlobalScope & { onMessagePort: (event:MessageEvent) => void }} Scope
- * @typedef {Object} MessagePortRequest
- */
diff --git a/examples/browser-service-worker/src/service/util.js b/examples/browser-service-worker/src/service/util.js
deleted file mode 100644
index ecc0b14c62..0000000000
--- a/examples/browser-service-worker/src/service/util.js
+++ /dev/null
@@ -1,120 +0,0 @@
-/**
- * Find a window client with the best score.
- *
- * @param {ServiceWorkerGlobalScope} target
- * @param {(client:WindowClient) => number} [scoreClient]
- * @returns {Promise}
- */
-export const selectClient = async (target, scoreClient = scoreWindowClient) => {
- // Get all the controlled window clients, score them and use the best one if
- // it is visible.
- const controlled = await getWindowClients(target)
- const [best] = controlled.sort((a, b) => scoreClient(b) - scoreClient(a))
- if (best && best.visibilityState === 'visible') {
- return best
- // Otherwise collect all window client (including not yet controlled ones)
- // score them and use the best one.
- } else {
- const clients = await getWindowClients(target, true)
- const [best] = clients.sort((a, b) => scoreClient(b) - scoreClient(a))
- if (best) {
- return best
- } else {
- // In theory this should never happen because all the content is loaded
- // from iframes that have windows.
- throw new Error('No viable client can be found')
- }
- }
-}
-
-/**
- * @param {WindowClient} client
- */
-const scoreWindowClient = ({ frameType, type, focused, visibilityState }) => {
- // Eliminate nested clients because they won't embed JS that responds to our request.
- const top = frameType === "nested" ? 0 : 1
- // If not a window it's not use to us.
- const typeScore = type === 'window' ? 1 : 0
- // if not visible it can't execute js so not use for us either.
- const visibiltyScore = visibilityState === 'visible' ? 1 : 0
- // if not focused it's event loop may be throttled so prefer focused.
- const focusScore = focused ? 2 : 1
- return typeScore * focusScore * visibiltyScore * top
-}
-
-
-
-/**
- * Utility function to get window clients.
- *
- * @param {ServiceWorkerGlobalScope} target
- * @param {boolean} [includeUncontrolled=false]
- * @returns {Promise}
- */
-const getWindowClients = async (target, includeUncontrolled=false) => {
- const clients = await target.clients.matchAll({
- type: 'window',
- includeUncontrolled
- })
- return /** @type {WindowClient[]} */ (clients)
-}
-
-/**
- * Utility function to create a `promise` and it's `resolve`, `reject`
- * controllers.
- *
- * @template X,T
- * @returns {PromiseController}
- */
-export const defer = () => {
- /** @type {PromiseController} */
- const controller = {}
- controller.promise = new Promise((resolve, reject) => {
- controller.resolve = resolve
- controller.reject = reject
- })
-
- return controller
-}
-
-/**
- * @template T
- * @param {(AsyncIterable & { return?: () => {}}) | AsyncGenerator} source
- * @returns {ReadableStream}
- */
-export const toReadableStream = (source) => {
- const iterator = source[Symbol.asyncIterator]()
- return new ReadableStream({
- /**
- * @param {ReadableStreamDefaultController} controller
- */
- async pull(controller) {
- try {
- const chunk = await iterator.next()
- if (chunk.done) {
- controller.close()
- } else {
- controller.enqueue(chunk.value)
- }
- } catch(error) {
- controller.error(error)
- }
- },
- /**
- * @param {any} reason
- */
- cancel(reason) {
- if (source.return) {
- source.return(reason)
- }
- }
- })
-}
-
-/**
- * @template X,T
- * @typedef {Object} PromiseController
- * @property {(ok:T) => void} resolve
- * @property {(error:X) => void} reject
- * @property {Promise} promise
- */
diff --git a/examples/browser-service-worker/src/worker.js b/examples/browser-service-worker/src/worker.js
deleted file mode 100644
index 2b35fe6f33..0000000000
--- a/examples/browser-service-worker/src/worker.js
+++ /dev/null
@@ -1,71 +0,0 @@
-'use strict'
-
-import IPFS from 'ipfs'
-import { Server, IPFSService } from 'ipfs-message-port-server'
-
-const main = async () => {
- // start listening to all incoming connections - they will be from browsing
- // contexts that run `new SharedWorker(...)`
- // Note: It is important to start listening before we do any async work to
- // ensure that connections aren't missed while awaiting
- const connections = listen(self, 'connect')
-
- // Start an IPFS node & create server that will expose its API to all clients
- // over message channel
- const ipfs = await IPFS.create()
- // And add hello world for tests
- await ipfs.add({ content: 'hello world' })
-
- // @ts-ignore
- const service = new IPFSService(ipfs)
- const server = new Server(service)
- self.server = server
- self.ipfs = ipfs
-
- // connect every queued and future connection to the server
- for await (const event of connections) {
- const port = event.ports[0]
- if (port) {
- server.connect(port)
- }
- }
-}
-
-/**
- * Creates an AsyncIterable for all the events on the given `target` for
- * the given event `type`. It is like `target.addEventListener(type, listener, options)`
- * but instead of passing listener you get `AsyncIterable` instead.
- * @param {EventTarget} target
- * @param {string} type
- * @param {AddEventListenerOptions} [options]
- */
-const listen = function (target, type, options) {
- const events = []
- let resume
- let ready = new Promise(resolve => (resume = resolve))
-
- const write = event => {
- events.push(event)
- resume()
- }
- const read = async () => {
- await ready
- ready = new Promise(resolve => (resume = resolve))
- return events.splice(0)
- }
-
- const reader = async function * () {
- try {
- while (true) {
- yield * await read()
- }
- } finally {
- target.removeEventListener(type, write, options)
- }
- }
-
- target.addEventListener(type, write, options)
- return reader()
-}
-
-main()
diff --git a/examples/browser-service-worker/test.js b/examples/browser-service-worker/test.js
deleted file mode 100644
index cae7e39759..0000000000
--- a/examples/browser-service-worker/test.js
+++ /dev/null
@@ -1,29 +0,0 @@
-'use strict'
-
-const pkg = require('./package.json')
-
-module.exports = {
- [pkg.name]: (browser) => {
- browser
- .url(process.env.IPFS_EXAMPLE_TEST_URL)
- .waitForElementVisible('body')
-
- browser.expect.element('body').text.to.contain('Load content by adding IPFS path to the URL')
- browser.expect.element('a').text.to.contain('/ipfs/bafy')
-
- browser.waitForElementPresent('meta[name=sw-ready]')
-
- browser
- .url(`${process.env.IPFS_EXAMPLE_TEST_URL}/ipfs/Qmf412jQZiuVUtdgnB36FXFX7xg5V6KEbSJ4dpQuhkLyfD`)
- .waitForElementVisible('body')
- .waitForElementVisible('iframe')
-
- browser.element('css selector', 'iframe', frame => {
- browser.frame({ ELEMENT: frame.value.ELEMENT }, () => {
- browser.waitForElementPresent('body')
- browser.expect.element('body').text.to.contain('hello world')
- browser.end()
- })
- })
- }
-}
diff --git a/examples/browser-service-worker/tsconfig.json b/examples/browser-service-worker/tsconfig.json
deleted file mode 100644
index 341ea1938a..0000000000
--- a/examples/browser-service-worker/tsconfig.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "compilerOptions": {
- "allowJs": true,
- "checkJs": true,
- "noEmit": true,
- "strict": true,
- "noImplicitAny": true,
- "strictNullChecks": true,
- "moduleResolution": "node",
- "esModuleInterop": true,
- "lib": [
- "esnext",
- "DOM",
- "webworker"
- ]
- },
- "include": [
- "src"
- ]
-}
diff --git a/examples/browser-service-worker/webpack.config.js b/examples/browser-service-worker/webpack.config.js
deleted file mode 100644
index 0dc0fbb1ef..0000000000
--- a/examples/browser-service-worker/webpack.config.js
+++ /dev/null
@@ -1,65 +0,0 @@
-'use strict'
-
-const path = require('path')
-const webpack = require('webpack')
-const CopyWebpackPlugin = require('copy-webpack-plugin')
-
-module.exports = {
- devtool: 'eval',
- entry: './src/main.js',
- output: {
- path: path.join(__dirname, 'dist'),
- filename: 'main.js',
- publicPath: '/'
- },
- devServer: {
- serveIndex: true,
- index: './index.html',
- compress: true,
- port: 3000,
- historyApiFallback: true
- },
- module: {
- rules: [
- {
- test: /\.js$/,
- exclude: /node_modules/,
- use: {
- loader: 'babel-loader',
- options: {
- presets: [
- [
- '@babel/preset-env',
- {
- targets: {
- esmodules: true
- }
- }
- ]
- ]
- }
- }
- }
- ]
- },
- resolve: {
- fallback: {
- stream: require.resolve('stream-browserify')
- }
- },
- plugins: [
- new CopyWebpackPlugin({
- patterns: [{
- from: 'index.html'
- }]
- }),
- // Note: stream-browserify has assumption about `Buffer` global in its
- // dependencies causing runtime errors. This is a workaround to provide
- // global `Buffer` until https://github.com/isaacs/core-util-is/issues/29
- // is fixed.
- new webpack.ProvidePlugin({
- Buffer: ['buffer', 'Buffer'],
- process: 'process/browser'
- })
- ]
-}
diff --git a/examples/browser-sharing-node-across-tabs/README.md b/examples/browser-sharing-node-across-tabs/README.md
deleted file mode 100644
index 039bc7b99a..0000000000
--- a/examples/browser-sharing-node-across-tabs/README.md
+++ /dev/null
@@ -1,38 +0,0 @@
-# Sharing js-ipfs node across browsing contexts (tabs) using [SharedWorker][]
-
-> In this example, you will find a boilerplate you can use to set up a js-ipfs
-> node in the [SharedWorker] and use it from multiple tabs.
-
-## Before you start
-
-First clone this repo, install dependencies in the project root and build the project.
-
-```bash
-git clone https://github.com/ipfs/js-ipfs.git
-cd js-ipfs/examples/browser-sharing-node-across-tabs
-npm install
-```
-
-## Running the example
-
-Run the following command within this folder:
-
-```bash
-npm start
-```
-
-Now open your browser at `http://localhost:3000`
-
-You should see the following:
-
-
-
-
-### Run tests
-
-```bash
-npm test
-```
-
-
-[SharedWorker]:https://developer.mozilla.org/en-US/docs/Web/API/SharedWorker
\ No newline at end of file
diff --git a/examples/browser-sharing-node-across-tabs/Screen Shot.png b/examples/browser-sharing-node-across-tabs/Screen Shot.png
deleted file mode 100644
index 38cf03585f..0000000000
Binary files a/examples/browser-sharing-node-across-tabs/Screen Shot.png and /dev/null differ
diff --git a/examples/browser-sharing-node-across-tabs/index.html b/examples/browser-sharing-node-across-tabs/index.html
deleted file mode 100644
index 8a19ba7c21..0000000000
--- a/examples/browser-sharing-node-across-tabs/index.html
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-
- Sample App
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/examples/browser-sharing-node-across-tabs/package.json b/examples/browser-sharing-node-across-tabs/package.json
deleted file mode 100644
index 699bf88259..0000000000
--- a/examples/browser-sharing-node-across-tabs/package.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "name": "example-browser-sharing-node-across-tabs",
- "description": "Sharing IPFS node across browsing contexts",
- "version": "1.0.0",
- "private": true,
- "scripts": {
- "clean": "rimraf ./dist",
- "build": "webpack",
- "start": "node server.js",
- "test": "test-ipfs-example"
- },
- "license": "MIT",
- "keywords": [],
- "devDependencies": {
- "@babel/core": "^7.13.10",
- "@babel/preset-env": "^7.13.12",
- "babel-loader": "^8.2.2",
- "copy-webpack-plugin": "^8.1.0",
- "node-polyfill-webpack-plugin": "^1.0.3",
- "rimraf": "^3.0.2",
- "test-ipfs-example": "^3.0.0",
- "webpack": "^5.28.0",
- "webpack-cli": "^4.5.0",
- "webpack-dev-server": "^3.11.2",
- "worker-loader": "^3.0.8"
- },
- "dependencies": {
- "ipfs": "^0.55.3",
- "ipfs-message-port-client": "^0.6.3",
- "ipfs-message-port-server": "^0.7.2"
- },
- "browserslist": [
- "last 2 versions and not dead and > 2%"
- ]
-}
diff --git a/examples/browser-sharing-node-across-tabs/server.js b/examples/browser-sharing-node-across-tabs/server.js
deleted file mode 100644
index 4a1a8ebdfb..0000000000
--- a/examples/browser-sharing-node-across-tabs/server.js
+++ /dev/null
@@ -1,18 +0,0 @@
-'use strict'
-
-const webpack = require('webpack')
-const WebpackDevServer = require('webpack-dev-server')
-const config = require('./webpack.config')
-
-const wds = new WebpackDevServer(webpack(config), {
- hot: true,
- historyApiFallback: true
-})
-
-wds.listen(3000, 'localhost', (err) => {
- if (err) {
- throw err
- }
-
- console.log('Listening at localhost:3000')
-})
diff --git a/examples/browser-sharing-node-across-tabs/src/main.js b/examples/browser-sharing-node-across-tabs/src/main.js
deleted file mode 100644
index 37da2107fa..0000000000
--- a/examples/browser-sharing-node-across-tabs/src/main.js
+++ /dev/null
@@ -1,44 +0,0 @@
-'use strict'
-
-import IPFSClient from "ipfs-message-port-client"
-
-const main = async () => {
- // connect / spawn shared ipfs worker & create a client.
- const worker = new SharedWorker(new URL('./worker.js', import.meta.url), { type: 'module' })
- const ipfs = IPFSClient.from(worker.port)
-
- const path = location.hash.slice(1)
- if (path.startsWith('/ipfs/')) {
- await viewer(ipfs, path)
- } else {
- await uploader(ipfs)
- }
-}
-
-const uploader = async (ipfs) => {
- document.body.outerHTML += 'Adding "hello world!" to shared IPFS node
'
- const entry = await ipfs.add(new Blob(['hello world!'], { type: "text/plain" }))
- const path = `/ipfs/${entry.cid}/`
- document.body.outerHTML += ``
-}
-
-const viewer = async (ipfs, path) => {
- document.body.outerHTML += `Loading ${path}
`
- try {
- const chunks = []
- for await (const chunk of await ipfs.cat(path)) {
- chunks.push(chunk)
- }
- const blob = new Blob(chunks)
- const url = URL.createObjectURL(blob)
- document.body.outerHTML +=
- ``
-
- } catch(error) {
- document.body.outerHTML += `${error}
`
- }
-}
-
-onload = main
\ No newline at end of file
diff --git a/examples/browser-sharing-node-across-tabs/src/worker.js b/examples/browser-sharing-node-across-tabs/src/worker.js
deleted file mode 100644
index 335a5980f2..0000000000
--- a/examples/browser-sharing-node-across-tabs/src/worker.js
+++ /dev/null
@@ -1,66 +0,0 @@
-'use strict'
-
-import IPFS from 'ipfs'
-import { Server, IPFSService } from 'ipfs-message-port-server'
-
-const main = async () => {
- console.info('heelo')
- // start listening to all the incoming connections (browsing contexts that
- // which run new SharedWorker...)
- // Note: It is important to start listening before we do any await to ensure
- // that connections aren't missed while awaiting.
- const connections = listen(self, 'connect')
-
- // Start an IPFS node & create server that will expose it's API to all clients
- // over message channel.
- const ipfs = await IPFS.create()
- const service = new IPFSService(ipfs)
- const server = new Server(service)
-
- // connect every queued and future connection to the server.
- for await (const event of connections) {
- const port = event.ports[0]
- if (port) {
- server.connect(port)
- }
- }
-}
-
-/**
- * Creates an AsyncIterable for all the events on the given `target` for
- * the given event `type`. It is like `target.addEventListener(type, listener, options)`
- * but instead of passing listener you get `AsyncIterable` instead.
- * @param {EventTarget} target
- * @param {string} type
- * @param {AddEventListenerOptions} options
- */
-const listen = function (target, type, options) {
- const events = []
- let resume
- let ready = new Promise(resolve => (resume = resolve))
-
- const write = event => {
- events.push(event)
- resume()
- }
- const read = async () => {
- await ready
- ready = new Promise(resolve => (resume = resolve))
- return events.splice(0)
- }
-
- const reader = async function * () {
- try {
- while (true) {
- yield * await read()
- }
- } finally {
- target.removeEventListener(type, write, options)
- }
- }
-
- target.addEventListener(type, write, options)
- return reader()
-}
-
-main()
\ No newline at end of file
diff --git a/examples/browser-sharing-node-across-tabs/test.js b/examples/browser-sharing-node-across-tabs/test.js
deleted file mode 100644
index 0f73bb20de..0000000000
--- a/examples/browser-sharing-node-across-tabs/test.js
+++ /dev/null
@@ -1,33 +0,0 @@
-'use strict'
-
-const pkg = require('./package.json')
-
-module.exports = {
- [pkg.name]: (browser) => {
- browser
- .url(process.env.IPFS_EXAMPLE_TEST_URL)
- .waitForElementVisible('.ipfs-add')
-
- browser.expect.element('.ipfs-add a').text.to.contain('/ipfs/')
- browser.click('.ipfs-add a')
-
- browser.windowHandle(({ value }) => {
- browser.windowHandles(({ value: handles }) => {
- const [handle] = handles.filter(handle => handle != value)
- browser.switchWindow(handle)
- })
- })
-
- browser.waitForElementVisible('.loading')
- browser.expect.element('.loading').text.to.contain('Loading /ipfs/')
-
- browser.waitForElementVisible('#content').pause(5000)
- browser.element('css selector', '#content', frame => {
- browser.frame({ ELEMENT: frame.value.ELEMENT }, () => {
- browser.waitForElementPresent('body')
- browser.expect.element('body').text.to.contain('hello world!')
- browser.end()
- })
- })
- }
-}
diff --git a/examples/browser-sharing-node-across-tabs/webpack.config.js b/examples/browser-sharing-node-across-tabs/webpack.config.js
deleted file mode 100644
index 49c190b123..0000000000
--- a/examples/browser-sharing-node-across-tabs/webpack.config.js
+++ /dev/null
@@ -1,62 +0,0 @@
-'use strict'
-
-const path = require('path')
-const webpack = require('webpack')
-const CopyWebpackPlugin = require('copy-webpack-plugin')
-const NodePolyfillPlugin = require('node-polyfill-webpack-plugin')
-
-module.exports = {
- devtool: 'eval',
- mode: 'development',
- entry: [
- 'webpack-dev-server/client?http://localhost:3000',
- 'webpack/hot/only-dev-server',
- './src/main'
- ],
- output: {
- path: path.join(__dirname, 'dist'),
- filename: 'static/bundle.js',
- publicPath: '/'
- },
- plugins: [
- new webpack.HotModuleReplacementPlugin(),
- new CopyWebpackPlugin({
- patterns: [{
- from: 'index.html'
- }]
- }),
- // fixes Module not found: Error: Can't resolve 'stream' in '.../node_modules/nofilter/lib'
- new NodePolyfillPlugin(),
- // Note: stream-browserify has assumption about `Buffer` global in its
- // dependencies causing runtime errors. This is a workaround to provide
- // global `Buffer` until https://github.com/isaacs/core-util-is/issues/29
- // is fixed.
- new webpack.ProvidePlugin({
- Buffer: ['buffer', 'Buffer'],
- process: 'process/browser'
- })
- ],
- module: {
- rules: [
- {
- test: /\.js$/,
- exclude: /node_modules/,
- use: {
- loader: 'babel-loader',
- options: {
- presets: [
- [
- '@babel/preset-env',
- {
- targets: {
- esmodules: true
- }
- }
- ]
- ]
- }
- }
- }
- ]
- }
-}
diff --git a/examples/browser-video-streaming/CHANGELOG.md b/examples/browser-video-streaming/CHANGELOG.md
deleted file mode 100644
index de4c150c8d..0000000000
--- a/examples/browser-video-streaming/CHANGELOG.md
+++ /dev/null
@@ -1,45 +0,0 @@
-# Change Log
-
-All notable changes to this project will be documented in this file.
-See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
-
-## [2.0.1](https://github.com/ipfs/js-ipfs/compare/example-browser-video-streaming@2.0.0...example-browser-video-streaming@2.0.1) (2020-04-08)
-
-**Note:** Version bump only for package example-browser-video-streaming
-
-
-
-
-
-# 2.0.0 (2020-03-31)
-
-
-### Bug Fixes
-
-* browser video streaming example ([#2267](https://github.com/ipfs/js-ipfs/issues/2267)) ([f5cf216](https://github.com/ipfs/js-ipfs/commit/f5cf216a9a3128779562711f6c5ab46791d30947))
-* reinstate hlsjs-ipfs-loader dep for video streaming example ([#2914](https://github.com/ipfs/js-ipfs/issues/2914)) ([af66e94](https://github.com/ipfs/js-ipfs/commit/af66e9460cd3fbabcc88f74496a3d93049453e51))
-* update hlsjs-ipfs-loader version ([#1422](https://github.com/ipfs/js-ipfs/issues/1422)) ([6b14812](https://github.com/ipfs/js-ipfs/commit/6b14812ae53a6f2c852d4b7deb7d9ab23eb454ba))
-
-
-### Code Refactoring
-
-* return peer IDs as strings not CIDs ([#2729](https://github.com/ipfs/js-ipfs/issues/2729)) ([16d540c](https://github.com/ipfs/js-ipfs/commit/16d540c540f375061d83dafaf6c38d0b7c4a3d60))
-
-
-### Features
-
-* implementing the new streaming interfaces ([#1086](https://github.com/ipfs/js-ipfs/issues/1086)) ([2c4b8b3](https://github.com/ipfs/js-ipfs/commit/2c4b8b325b94d4506b87441f06c5d29bb6f37f72))
-
-
-### BREAKING CHANGES
-
-* Where `PeerID`s were previously [CID](https://www.npmjs.com/package/cids)s, now they are Strings
-
-- `ipfs.bitswap.stat().peers[n]` is now a String (was a CID)
-- `ipfs.dht.findPeer().id` is now a String (was a CID)
-- `ipfs.dht.findProvs()[n].id` is now a String (was a CID)
-- `ipfs.dht.provide()[n].id` is now a String (was a CID)
-- `ipfs.dht.put()[n].id` is now a String (was a CID)
-- `ipfs.dht.query()[n].id` is now a String (was a CID)
-- `ipfs.id().id` is now a String (was a CID)
-- `ipfs.id().addresses[n]` are now [Multiaddr](https://www.npmjs.com/package/multiaddr)s (were Strings)
diff --git a/examples/browser-video-streaming/README.md b/examples/browser-video-streaming/README.md
deleted file mode 100644
index 556e24e304..0000000000
--- a/examples/browser-video-streaming/README.md
+++ /dev/null
@@ -1,64 +0,0 @@
-# Streaming video in the browser with js-ipfs and hls.js
-
-This example shows a method for video/audio streaming in the browser over IPFS.
-
-## Why use HLS?
-
-HLS (Apple's HTTP Live Streaming) is one of several protocols currently available for adaptive bitrate streaming.
-
-One of the advantages of HLS over some other streaming technologies is that the content can be hosted on a plain old web server without any special server-side support. The way this works is that the original content (the stream or video/audio file) is split up into small MPEG2-TS segments before being uploaded to the server. The segments are then fetched by the HLS player on the fly (using regular HTTP GET requests) and get spliced together to a continuous stream.
-
-In addition to the segments there are also so-called manifests (m3u8 files) which contain metadata about segments and their bitrates. A stream can contain segments of multiple bitrates and the HLS player will automatically switch to the optimal bitrate based on client performance.
-
-The fact that HLS content is just "a bunch of files" makes it a good choice for IPFS (another protocol that works this way is MPEG-DASH, which could certainly be a good choice as well). Furthermore, the [hls.js](https://github.com/video-dev/hls.js) library enables straightforward integration with the HTML5 video element.
-
-## hlsjs-ipfs-loader
-
-The hls.js library ships with an HTTP based content loader only, but it's fortunately possible to configure custom content loaders as well, which is what makes IPFS streaming possible in this case. A loader implementation that fetches content using js-ipfs can be found [here](https://www.npmjs.com/package/hlsjs-ipfs-loader), and is easy to use on a regular HTML page:
-
-```html
-
-
-
-```
-
-## Generating HLS content
-
-In order for any of the above to be useful, we also need to have a way to actually generate HLS manifests and MPEG2-TS segments from an arbitrary video/audio file. Luckily, most new builds of `ffmpeg` are compiled with this capability.
-
-For example, say we have a directory containing a video file `BigBuckBunny_320x180.mp4`. We can then create a sub directory and generate the HLS data there, and finally add it to IPFS:
-
-```console
-$ mkdir hls-bunny
-$ cd hls-bunny
-$ ffmpeg -i ../BigBuckBunny_320x180.mp4 -profile:v baseline -level 3.0 -start_number 0 -hls_time 5 -hls_list_size 0 -f hls master.m3u8
-$ ipfs add -Qr .
-```
-
-The most important piece of information to note down is the name you choose for the HLS manifest (master.m3u8 in this example, but you're free to use any name), and the hash returned by `ipfs add`. Consult [streaming.js](streaming.js) for a full example of how these values are used.
-
-## Before you start
-
-First clone this repo, install dependencies in the project root and build the project.
-
-```console
-$ git clone https://github.com/ipfs/js-ipfs.git
-$ cd js-ipfs
-$ npm install
-$ npm run build
-```
-
-## Running the example
-
-*Note:* If you try to run the example straight from disk, some browsers (e.g Chrome) might, for security reasons, prevent some resources from loading correctly. To get around this, simply cd into the directory of this example and use http-server from npm:
-
-```console
-$ npm install -g http-server
-$ http-server
-```
-
-You should then be able to stream Big Buck Bunny by pointing your browser at http://localhost:8080.
-
-In addition to video streaming, plain audio streaming works fine as well. Simply use the same ffmpeg + ipfs procedure as described above, but with your audio file as input. You may also want to change the video tag to `audio` (video tags will play plain audio as well, but the player looks a bit strange).
-
-On a final note, without diving too deep into what the specific ffmpeg HLS options above mean, it's worth mentioning the `hls_time` option, which defines the length of each HLS chunk (in seconds) and is potentially interesting for performance tuning (see for example [this article](https://bitmovin.com/mpeg-dash-hls-segment-length/)).
diff --git a/examples/browser-video-streaming/index.html b/examples/browser-video-streaming/index.html
deleted file mode 100644
index a86482a382..0000000000
--- a/examples/browser-video-streaming/index.html
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
-
-
-
-
diff --git a/examples/browser-video-streaming/package.json b/examples/browser-video-streaming/package.json
deleted file mode 100644
index 9972f7ac40..0000000000
--- a/examples/browser-video-streaming/package.json
+++ /dev/null
@@ -1,21 +0,0 @@
-{
- "name": "example-browser-video-streaming",
- "description": "IPFS browser video streaming example",
- "main": "index.html",
- "version": "2.0.1",
- "private": true,
- "scripts": {
- "serve": "http-server . -a 127.0.0.1 -p 8888",
- "start": "npm run serve",
- "test": "test-ipfs-example"
- },
- "keywords": [],
- "license": "MIT",
- "devDependencies": {
- "http-server": "^0.12.3",
- "test-ipfs-example": "^3.0.0"
- },
- "dependencies": {
- "ipfs": "^0.55.3"
- }
-}
diff --git a/examples/browser-video-streaming/streaming.js b/examples/browser-video-streaming/streaming.js
deleted file mode 100644
index 2781419613..0000000000
--- a/examples/browser-video-streaming/streaming.js
+++ /dev/null
@@ -1,21 +0,0 @@
-'use strict'
-
-/* global Hls Ipfs HlsjsIpfsLoader */
-/* eslint-env browser */
-document.addEventListener('DOMContentLoaded', async () => {
- const testHash = 'QmdpAidwAsBGptFB3b6A9Pyi5coEbgjHrL3K2Qrsutmj9K'
- const repoPath = 'ipfs-' + Math.random()
- const node = await Ipfs.create({ repo: repoPath })
-
- Hls.DefaultConfig.loader = HlsjsIpfsLoader
- Hls.DefaultConfig.debug = false
- if (Hls.isSupported()) {
- const video = document.getElementById('video')
- const hls = new Hls()
- hls.config.ipfs = node
- hls.config.ipfsHash = testHash
- hls.loadSource('master.m3u8')
- hls.attachMedia(video)
- hls.on(Hls.Events.MANIFEST_PARSED, () => video.play())
- }
-})
diff --git a/examples/browser-video-streaming/test.js b/examples/browser-video-streaming/test.js
deleted file mode 100644
index 11da73ec59..0000000000
--- a/examples/browser-video-streaming/test.js
+++ /dev/null
@@ -1,25 +0,0 @@
-'use strict'
-
-module.exports = {
- 'Browser video streaming': function (browser) {
- browser
- .url(process.env.IPFS_EXAMPLE_TEST_URL)
- .waitForElementPresent('#video')
- .executeAsync(function (done) {
- const video = document.getElementById('video')
- video.addEventListener('canplay', function () {
- done()
- })
-
- setTimeout(() => {
- done('Did not start streaming video after 1m')
- }, 60000)
- }, [], (result) => {
- if (result.value) {
- throw new Error(result.value)
- }
- })
-
- browser.end()
- }
-}
diff --git a/examples/browser-vue/CHANGELOG.md b/examples/browser-vue/CHANGELOG.md
deleted file mode 100644
index 70f3d77def..0000000000
--- a/examples/browser-vue/CHANGELOG.md
+++ /dev/null
@@ -1,19 +0,0 @@
-# Change Log
-
-All notable changes to this project will be documented in this file.
-See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
-
-## [0.1.2](https://github.com/ipfs/js-ipfs/compare/example-browser-vue@0.1.1...example-browser-vue@0.1.2) (2020-04-08)
-
-**Note:** Version bump only for package example-browser-vue
-
-
-
-
-
-## 0.1.1 (2020-03-31)
-
-
-### Features
-
-* remove ky from http-client and utils ([#2810](https://github.com/ipfs/js-ipfs/issues/2810)) ([9bc9625](https://github.com/ipfs/js-ipfs/commit/9bc96252686d0bbbfdb2a3300bb17b80eafdaf00)), closes [#2801](https://github.com/ipfs/js-ipfs/issues/2801)
diff --git a/examples/browser-vue/README.md b/examples/browser-vue/README.md
deleted file mode 100644
index f2420ba967..0000000000
--- a/examples/browser-vue/README.md
+++ /dev/null
@@ -1,46 +0,0 @@
-# IPFS Vue app
-
-A minimal demonstration of how to use `js-ipfs` with `Vue`.
-
-
-
-This project was bootstrapped with [Vue CLI](https://cli.vuejs.org/).
-
-## Before you start
-
-First clone this repo, install dependencies in the project root and build the project.
-
-```console
-$ git clone https://github.com/ipfs/js-ipfs.git
-$ cd js-ipfs
-$ npm install
-$ npm run build
-```
-
-### Compiles and hot-reloads for development
-
-```console
-$ npm run serve
-```
-
-### Compiles and minifies for production
-
-```console
-$ npm run build
-```
-
-### Run your tests
-
-```console
-$ npm run test
-```
-
-### Lints and fixes files
-
-```console
-$ npm run lint
-```
-
-### Customize configuration
-
-See [Configuration Reference](https://cli.vuejs.org/config/).
diff --git a/examples/browser-vue/babel.config.js b/examples/browser-vue/babel.config.js
deleted file mode 100644
index 4f45f32b5e..0000000000
--- a/examples/browser-vue/babel.config.js
+++ /dev/null
@@ -1,3 +0,0 @@
-module.exports = {
- presets: ['@vue/app'],
-};
diff --git a/examples/browser-vue/package.json b/examples/browser-vue/package.json
deleted file mode 100644
index 94cc77a940..0000000000
--- a/examples/browser-vue/package.json
+++ /dev/null
@@ -1,51 +0,0 @@
-{
- "name": "example-browser-vue",
- "version": "1.0.0",
- "private": true,
- "scripts": {
- "clean": "rimraf ./dist",
- "serve": "vue-cli-service serve",
- "build": "vue-cli-service build",
- "lint": "vue-cli-service lint",
- "test": "test-ipfs-example"
- },
- "dependencies": {
- "core-js": "^3.6.4",
- "ipfs": "^0.55.3",
- "vue": "^2.6.11"
- },
- "devDependencies": {
- "@vue/cli-plugin-babel": "5.0.0-alpha.8",
- "@vue/cli-plugin-eslint": "5.0.0-alpha.8",
- "@vue/cli-service": "5.0.0-alpha.8",
- "babel-eslint": "^10.1.0",
- "eslint": "^7.22.0",
- "eslint-plugin-vue": "^7.8.0",
- "node-polyfill-webpack-plugin": "^1.0.3",
- "rimraf": "^3.0.2",
- "test-ipfs-example": "^3.0.0",
- "vue-template-compiler": "^2.6.11"
- },
- "eslintConfig": {
- "root": true,
- "env": {
- "node": true
- },
- "extends": [
- "plugin:vue/essential",
- "eslint:recommended"
- ],
- "rules": {},
- "parserOptions": {
- "parser": "babel-eslint"
- }
- },
- "postcss": {
- "plugins": {
- "autoprefixer": {}
- }
- },
- "browserslist": [
- "last 2 versions and not dead and > 2%"
- ]
-}
diff --git a/examples/browser-vue/public/favicon.ico b/examples/browser-vue/public/favicon.ico
deleted file mode 100644
index b2f1f9683f..0000000000
Binary files a/examples/browser-vue/public/favicon.ico and /dev/null differ
diff --git a/examples/browser-vue/public/index.html b/examples/browser-vue/public/index.html
deleted file mode 100644
index d9c8380d30..0000000000
--- a/examples/browser-vue/public/index.html
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
-
-
-
-
-
- IPFS Vue
-
-
-
- We're sorry but browser-vue doesn't work properly without JavaScript enabled. Please enable it to
- continue.
-
-
-
-
-
diff --git a/examples/browser-vue/src/App.vue b/examples/browser-vue/src/App.vue
deleted file mode 100644
index dbe1621ef9..0000000000
--- a/examples/browser-vue/src/App.vue
+++ /dev/null
@@ -1,32 +0,0 @@
-
-
-
-
-
-
-
-
-
diff --git a/examples/browser-vue/src/assets/ipfs-vue-screenshot.png b/examples/browser-vue/src/assets/ipfs-vue-screenshot.png
deleted file mode 100644
index 993b8628c6..0000000000
Binary files a/examples/browser-vue/src/assets/ipfs-vue-screenshot.png and /dev/null differ
diff --git a/examples/browser-vue/src/assets/logo.svg b/examples/browser-vue/src/assets/logo.svg
deleted file mode 100644
index 8d6a879e15..0000000000
--- a/examples/browser-vue/src/assets/logo.svg
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/examples/browser-vue/src/components/IpfsInfo.vue b/examples/browser-vue/src/components/IpfsInfo.vue
deleted file mode 100644
index 772fc6da0e..0000000000
--- a/examples/browser-vue/src/components/IpfsInfo.vue
+++ /dev/null
@@ -1,49 +0,0 @@
-
-
-
-
{{ status }}
-
ID: {{ id }}
-
Agent version: {{ agentVersion }}
-
-
-
-
-
-
-
diff --git a/examples/browser-vue/src/main.js b/examples/browser-vue/src/main.js
deleted file mode 100644
index 0c5dcb974c..0000000000
--- a/examples/browser-vue/src/main.js
+++ /dev/null
@@ -1,12 +0,0 @@
-import Vue from 'vue';
-import App from './App.vue';
-import VueIpfs from './plugins/vue-ipfs';
-
-// Load our IPFS plugin.
-Vue.use(VueIpfs);
-
-Vue.config.productionTip = false;
-
-new Vue({
- render: h => h(App),
-}).$mount('#app');
diff --git a/examples/browser-vue/src/plugins/vue-ipfs.js b/examples/browser-vue/src/plugins/vue-ipfs.js
deleted file mode 100644
index 4bada24dc1..0000000000
--- a/examples/browser-vue/src/plugins/vue-ipfs.js
+++ /dev/null
@@ -1,14 +0,0 @@
-import IPFS from 'ipfs'
-
-const plugin = {
- install(Vue, opts = {}) {
- Vue.prototype.$ipfs = IPFS.create(opts)
- },
-}
-
-// Auto-install
-if (typeof window !== 'undefined' && window.Vue) {
- window.Vue.use(plugin)
-}
-
-export default plugin
diff --git a/examples/browser-vue/test.js b/examples/browser-vue/test.js
deleted file mode 100644
index 34c1b461ce..0000000000
--- a/examples/browser-vue/test.js
+++ /dev/null
@@ -1,16 +0,0 @@
-'use strict'
-
-const pkg = require('./package.json')
-
-module.exports = {
- [pkg.name]: function (browser) {
- browser
- .url(process.env.IPFS_EXAMPLE_TEST_URL)
- .waitForElementVisible('.ipfs-info')
-
- browser.expect.element('.ipfs-info h1').text.to.contain('Connected to IPFS')
-
- browser.end()
- }
-}
-
diff --git a/examples/browser-vue/vue.config.js b/examples/browser-vue/vue.config.js
deleted file mode 100644
index b8114fc460..0000000000
--- a/examples/browser-vue/vue.config.js
+++ /dev/null
@@ -1,20 +0,0 @@
-const webpack = require('webpack')
-const NodePolyfillPlugin = require('node-polyfill-webpack-plugin')
-
-module.exports = {
- configureWebpack: {
- plugins: [
- // fixes Module not found: Error: Can't resolve 'stream' in '.../node_modules/nofilter/lib'
- new NodePolyfillPlugin(),
- // Note: stream-browserify has assumption about `Buffer` global in its
- // dependencies causing runtime errors. This is a workaround to provide
- // global `Buffer` until https://github.com/isaacs/core-util-is/issues/29
- // is fixed.
- new webpack.ProvidePlugin({
- Buffer: ['buffer', 'Buffer'],
- process: 'process/browser'
- })
- ]
- },
- chainWebpack: config => config.resolve.symlinks(false)
-}
diff --git a/examples/browser-webpack/.eslintrc b/examples/browser-webpack/.eslintrc
deleted file mode 100644
index 676feeeb16..0000000000
--- a/examples/browser-webpack/.eslintrc
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "extends": "standard",
- "rules": {
- "react/jsx-uses-react": 2,
- "react/jsx-uses-vars": 2,
- "react/react-in-jsx-scope": 2
- },
- "plugins": [
- "react"
- ]
-}
diff --git a/examples/browser-webpack/CHANGELOG.md b/examples/browser-webpack/CHANGELOG.md
deleted file mode 100644
index 00e0281f04..0000000000
--- a/examples/browser-webpack/CHANGELOG.md
+++ /dev/null
@@ -1,25 +0,0 @@
-# Change Log
-
-All notable changes to this project will be documented in this file.
-See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
-
-## [1.1.1](https://github.com/ipfs/js-ipfs/compare/example-browser-webpack@1.1.0...example-browser-webpack@1.1.1) (2020-04-08)
-
-**Note:** Version bump only for package example-browser-webpack
-
-
-
-
-
-# 1.1.0 (2020-03-31)
-
-
-### Bug Fixes
-
-* examples after files API refactor ([#1740](https://github.com/ipfs/js-ipfs/issues/1740)) ([34ec036](https://github.com/ipfs/js-ipfs/commit/34ec036b0df9563a014c1348f0a056c1f98aadad))
-
-
-### Features
-
-* get Ping to work properly ([27d5a57](https://github.com/ipfs/js-ipfs/commit/27d5a575c58a445bba4ba1f86d22ccc76623ef64))
-* implementing the new streaming interfaces ([#1086](https://github.com/ipfs/js-ipfs/issues/1086)) ([2c4b8b3](https://github.com/ipfs/js-ipfs/commit/2c4b8b325b94d4506b87441f06c5d29bb6f37f72))
diff --git a/examples/browser-webpack/README.md b/examples/browser-webpack/README.md
deleted file mode 100644
index a902ff9e8c..0000000000
--- a/examples/browser-webpack/README.md
+++ /dev/null
@@ -1,28 +0,0 @@
-# Bundle js-ipfs with Webpack!
-
-> In this example, you will find a boilerplate you can use to guide yourself into bundling js-ipfs with webpack, so that you can use it in your own web app!
-
-## Before you start
-
-First clone this repo, install dependencies in the project root and build the project.
-
-```console
-$ git clone https://github.com/ipfs/js-ipfs.git
-$ cd js-ipfs
-$ npm install
-$ npm run build
-```
-
-## Running the example
-
-Once the daemon is on, run the following command within this folder:
-
-```bash
-$ npm start
-```
-
-Now open your browser at `http://localhost:3000`
-
-You should see the following:
-
-
diff --git a/examples/browser-webpack/img/1.png b/examples/browser-webpack/img/1.png
deleted file mode 100644
index 37a1103658..0000000000
Binary files a/examples/browser-webpack/img/1.png and /dev/null differ
diff --git a/examples/browser-webpack/index.html b/examples/browser-webpack/index.html
deleted file mode 100644
index a9678086e3..0000000000
--- a/examples/browser-webpack/index.html
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
- Sample App
-
-
-
-
-
-
diff --git a/examples/browser-webpack/package.json b/examples/browser-webpack/package.json
deleted file mode 100644
index d2b8ca34e6..0000000000
--- a/examples/browser-webpack/package.json
+++ /dev/null
@@ -1,37 +0,0 @@
-{
- "name": "example-browser-webpack",
- "description": "Bundle js-ipfs with WebPack",
- "version": "1.1.1",
- "private": true,
- "scripts": {
- "clean": "rimraf ./dist",
- "build": "webpack",
- "start": "node server.js",
- "test": "test-ipfs-example"
- },
- "license": "MIT",
- "keywords": [],
- "devDependencies": {
- "@babel/core": "^7.13.10",
- "@babel/preset-env": "^7.13.12",
- "@babel/preset-react": "^7.12.13",
- "babel-loader": "^8.2.2",
- "copy-webpack-plugin": "^8.1.0",
- "node-polyfill-webpack-plugin": "^1.0.3",
- "react": "^17.0.2",
- "react-dom": "^17.0.2",
- "react-hot-loader": "^4.12.21",
- "rimraf": "^3.0.2",
- "stream-browserify": "^3.0.0",
- "test-ipfs-example": "^3.0.0",
- "webpack": "^5.28.0",
- "webpack-cli": "^4.5.0",
- "webpack-dev-server": "^3.11.2"
- },
- "dependencies": {
- "ipfs": "^0.55.3"
- },
- "browserslist": [
- "last 2 versions and not dead and > 2%"
- ]
-}
diff --git a/examples/browser-webpack/server.js b/examples/browser-webpack/server.js
deleted file mode 100644
index 4a1a8ebdfb..0000000000
--- a/examples/browser-webpack/server.js
+++ /dev/null
@@ -1,18 +0,0 @@
-'use strict'
-
-const webpack = require('webpack')
-const WebpackDevServer = require('webpack-dev-server')
-const config = require('./webpack.config')
-
-const wds = new WebpackDevServer(webpack(config), {
- hot: true,
- historyApiFallback: true
-})
-
-wds.listen(3000, 'localhost', (err) => {
- if (err) {
- throw err
- }
-
- console.log('Listening at localhost:3000')
-})
diff --git a/examples/browser-webpack/src/components/app.js b/examples/browser-webpack/src/components/app.js
deleted file mode 100644
index f6b7ad4e91..0000000000
--- a/examples/browser-webpack/src/components/app.js
+++ /dev/null
@@ -1,70 +0,0 @@
-'use strict'
-
-const React = require('react')
-const IPFS = require('ipfs')
-const uint8ArrayConcat = require('uint8arrays/concat')
-const uint8ArrayToString = require('uint8arrays/to-string')
-
-const stringToUse = 'hello world from webpacked IPFS'
-
-class App extends React.Component {
- constructor (props) {
- super(props)
- this.state = {
- id: null,
- agentVersion: null,
- protocolVersion: null,
- addedFileHash: null,
- addedFileContents: null
- }
- }
-
- componentDidMount () {
- this.ops()
- }
-
- async ops () {
- const node = await IPFS.create({ repo: String(Math.random() + Date.now()) })
-
- console.log('IPFS node is ready')
-
- const { id, agentVersion, protocolVersion } = await node.id()
-
- this.setState({ id, agentVersion, protocolVersion })
-
- const { cid } = await node.add(stringToUse)
- this.setState({ addedFileHash: cid.toString() })
-
- let bufs = []
-
- for await (const buf of node.cat(cid)) {
- bufs.push(buf)
- }
-
- const data = uint8ArrayConcat(bufs)
- this.setState({ addedFileContents: uint8ArrayToString(data) })
- }
-
- render () {
- return (
-
-
Everything is working!
-
Your ID is {this.state.id}
-
Your IPFS version is {this.state.agentVersion}
-
Your IPFS protocol version is {this.state.protocolVersion}
-
-
- Added a file!
- {this.state.addedFileHash}
-
-
-
-
- Contents of this file:
- {this.state.addedFileContents}
-
-
- )
- }
-}
-module.exports = App
diff --git a/examples/browser-webpack/src/components/index.js b/examples/browser-webpack/src/components/index.js
deleted file mode 100644
index 32fef13ff3..0000000000
--- a/examples/browser-webpack/src/components/index.js
+++ /dev/null
@@ -1,7 +0,0 @@
-'use strict'
-
-const React = require('react')
-const ReactDOM = require('react-dom')
-const App = require('./app')
-
-ReactDOM.render( , document.getElementById('root'))
diff --git a/examples/browser-webpack/test.js b/examples/browser-webpack/test.js
deleted file mode 100644
index d8cdd3c63d..0000000000
--- a/examples/browser-webpack/test.js
+++ /dev/null
@@ -1,18 +0,0 @@
-'use strict'
-
-const pkg = require('./package.json')
-
-module.exports = {
- [pkg.name]: function (browser) {
- browser
- .url(process.env.IPFS_EXAMPLE_TEST_URL)
- .waitForElementVisible('#root h1')
-
- browser.expect.element('#root h1').text.to.contain('Everything is working!')
- browser.expect.element('#root').text.to.contain('Added a file!')
- browser.expect.element('#root').text.to.contain('hello world from webpacked IPFS')
-
- browser.end()
- }
-}
-
diff --git a/examples/browser-webpack/webpack.config.js b/examples/browser-webpack/webpack.config.js
deleted file mode 100644
index 8d36c445a5..0000000000
--- a/examples/browser-webpack/webpack.config.js
+++ /dev/null
@@ -1,64 +0,0 @@
-
-const path = require('path')
-const webpack = require('webpack')
-const CopyWebpackPlugin = require('copy-webpack-plugin')
-const NodePolyfillPlugin = require('node-polyfill-webpack-plugin')
-
-module.exports = {
- devtool: 'eval',
- entry: [
- 'webpack-dev-server/client?http://localhost:3000',
- 'webpack/hot/only-dev-server',
- './src/components/index'
- ],
- output: {
- path: path.join(__dirname, 'dist'),
- filename: 'static/bundle.js',
- publicPath: '/static/'
- },
- plugins: [
- new webpack.HotModuleReplacementPlugin(),
- new CopyWebpackPlugin({
- patterns: [{
- from: 'index.html'
- }, {
- from: 'img',
- to: 'static/img'
- }]
- }),
- // fixes Module not found: Error: Can't resolve 'stream' in '.../node_modules/nofilter/lib'
- new NodePolyfillPlugin(),
- // Note: stream-browserify has assumption about `Buffer` global in its
- // dependencies causing runtime errors. This is a workaround to provide
- // global `Buffer` until https://github.com/isaacs/core-util-is/issues/29
- // is fixed.
- new webpack.ProvidePlugin({
- Buffer: ['buffer', 'Buffer'],
- process: 'process/browser'
- })
- ],
- module: {
- rules: [
- {
- test: /\.js$/,
- exclude: /node_modules/,
- use: {
- loader: 'babel-loader',
- options: {
- presets: [
- [
- '@babel/preset-env',
- {
- targets: {
- esmodules: true
- }
- }
- ],
- '@babel/preset-react'
- ]
- }
- }
- }
- ]
- }
-}
diff --git a/examples/circuit-relaying/CHANGELOG.md b/examples/circuit-relaying/CHANGELOG.md
deleted file mode 100644
index 3a9f7f4e54..0000000000
--- a/examples/circuit-relaying/CHANGELOG.md
+++ /dev/null
@@ -1,67 +0,0 @@
-# Change Log
-
-All notable changes to this project will be documented in this file.
-See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
-
-## [0.1.1](https://github.com/ipfs/js-ipfs/compare/example-circuit-relaying@0.1.0...example-circuit-relaying@0.1.1) (2020-04-08)
-
-**Note:** Version bump only for package example-circuit-relaying
-
-
-
-
-
-# 0.1.0 (2020-03-31)
-
-
-### Bug Fixes
-
-* fixing circuit-relaying example ([#1443](https://github.com/ipfs/js-ipfs/issues/1443)) ([a681fc5](https://github.com/ipfs/js-ipfs/commit/a681fc5aea835ee83adcf900efb5168e7e31cde8)), closes [#1423](https://github.com/ipfs/js-ipfs/issues/1423)
-* typo ([#1367](https://github.com/ipfs/js-ipfs/issues/1367)) ([2679129](https://github.com/ipfs/js-ipfs/commit/267912959fc55b0ac90946b6ee46ff886799ea60))
-
-
-### chore
-
-* move mfs and multipart files into core ([#2811](https://github.com/ipfs/js-ipfs/issues/2811)) ([82b9e08](https://github.com/ipfs/js-ipfs/commit/82b9e085330e6c6290e6f3dd29678247984ffdce))
-
-
-### Code Refactoring
-
-* return peer IDs as strings not CIDs ([#2729](https://github.com/ipfs/js-ipfs/issues/2729)) ([16d540c](https://github.com/ipfs/js-ipfs/commit/16d540c540f375061d83dafaf6c38d0b7c4a3d60))
-
-
-### Features
-
-* (BREAKING CHANGE) new libp2p configuration ([#1401](https://github.com/ipfs/js-ipfs/issues/1401)) ([9c60909](https://github.com/ipfs/js-ipfs/commit/9c6090975521ae517b570f9479f696acf2d5371b))
-* Circuit Relay ([#1063](https://github.com/ipfs/js-ipfs/issues/1063)) ([f7eaa43](https://github.com/ipfs/js-ipfs/commit/f7eaa4321de2d8137086ac750104a0671f156a47))
-* gossipsub as default pubsub ([#2298](https://github.com/ipfs/js-ipfs/issues/2298)) ([902e045](https://github.com/ipfs/js-ipfs/commit/902e04547e8cd0aaee994193ef664f662ff07683))
-* mfs implementation ([#1360](https://github.com/ipfs/js-ipfs/issues/1360)) ([871d24e](https://github.com/ipfs/js-ipfs/commit/871d24e35c402956e2297350342268528c3192db)), closes [#1425](https://github.com/ipfs/js-ipfs/issues/1425)
-
-
-### BREAKING CHANGES
-
-* When the path passed to `ipfs.files.stat(path)` was a hamt sharded dir, the resovled
-value returned by js-ipfs previously had a `type` property of with a value of
-`'hamt-sharded-directory'`. To bring it in line with go-ipfs this value is now
-`'directory'`.
-* Where `PeerID`s were previously [CID](https://www.npmjs.com/package/cids)s, now they are Strings
-
-- `ipfs.bitswap.stat().peers[n]` is now a String (was a CID)
-- `ipfs.dht.findPeer().id` is now a String (was a CID)
-- `ipfs.dht.findProvs()[n].id` is now a String (was a CID)
-- `ipfs.dht.provide()[n].id` is now a String (was a CID)
-- `ipfs.dht.put()[n].id` is now a String (was a CID)
-- `ipfs.dht.query()[n].id` is now a String (was a CID)
-- `ipfs.id().id` is now a String (was a CID)
-- `ipfs.id().addresses[n]` are now [Multiaddr](https://www.npmjs.com/package/multiaddr)s (were Strings)
-* The default pubsub implementation has changed from floodsub to [gossipsub](https://github.com/ChainSafe/gossipsub-js). Additionally, to enable pubsub programmatically set `pubsub.enabled: true` instead of `EXPERIMENTAL.pubsub: true` or via the CLI pass `--enable-pubsub` instead of `--enable-pubsub-experiment` to `jsipfs daemon`.
-* libp2p configuration has changed
-
- * old: `libp2p.modules.discovery`
- * new: `libp2p.modules.peerDiscovery`
-
-License: MIT
-Signed-off-by: David Dias
-
-License: MIT
-Signed-off-by: Alan Shaw
diff --git a/examples/circuit-relaying/README.md b/examples/circuit-relaying/README.md
deleted file mode 100644
index ce1a6d16a5..0000000000
--- a/examples/circuit-relaying/README.md
+++ /dev/null
@@ -1,361 +0,0 @@
-# Tutorial - Understanding Circuit Relay
-
-> Welcome! This tutorial will help you understand circuit relay, where it fits in the stack and how to use it.
-
-### So what is a `circuit-relay` and what do we need it for?
-
-In p2p networks there are many cases where two nodes can't talk to each other directly. That may happen because of network topology, i.e. NATs, or execution environments - for example browser nodes can't connect to each other directly because they lack any sort of socket functionality and relaying on specialized rendezvous nodes introduces an undesirable centralization point to the network. A `circuit-relay` is a way to solve this problem - it is a node that allows two other nodes that can't otherwise talk to each other, use a third node, a relay to do so.
-
-#### How does circuit relay work?
-
-> For a more in-depth explanation take a look at the [relay spec](https://github.com/libp2p/specs/blob/master/relay/README.md) and `js-libp2p-circuit` [README](https://github.com/libp2p/js-libp2p-circuit/blob/master/README.md)
-
-Here is a simple diagram depicting how a typical circuit-relay connection might look:
-
-```
-+---------------------+ | | +---------------------+
-| Node A |---------> FIREWALL <---------| Node B |
-+----------^----------+ | | +----------^----------+
- | |
- | +---------------------+ |
- +---------------> Circuit Relay <--------------+
- +---------------------+
-```
-
-`Node A` tries to connect to `Node B` but, UH-OH! There is a firewall in between that's preventing it from happening. If both `Node A` and `Node B` know about a relay, they can use it to establish the connection.
-
-This is what it looks like, in simplified steps:
-
-1. `Node A` tries to connect to `Node B` over one of its known addresses
-2. Connection fails because of firewall/NAT/incompatible transports/etc...
-3. Both `Node A` and `Node B` know of the same relay - `Relay`
-4. `Node A` falls back to dialing over `Relay` to `Node B` using its `'/p2p-circuit'` address, which involves:
- 1. `Node A` sends a `HOP` request to `Relay`
- 2. `Relay` extracts the destination address, figures out that a circuit to `Node B` is being requested
- 3. `Relay` sends a `STOP` request to `Node B`
- 4. `Node B` responds with a `SUCCESS` message
- 5. `Relay` proceed to create a circuit over the two nodes
-5. `Node A` and `Node B` are now connected over `Relay`
-
-That's it!
-
-#### What's up with this `HOP` and `STOP`?
-
-Circuit relay consists of two logical parts — dialer/listener and relay (`HOP`). The listener is also known as the `STOP` node. Each of these — dial, listen, and relay — happen on a different node. If we use the nodes from the above example, it looks something like this:
-
-- The `dialer` knows how to dial a `relay` (`HOP`) - `Node A`
-- The `relay` (`HOP`) knows how to contact a destination node (`STOP`) and create a circuit - `Relay` node
-- The `listener` (`STOP`) knows how to process relay requests that come from the relay (`HOP`) node - `Node B`
-
-_Fun fact - the `HOP` and `STOP` names are also used internally by circuit to identify the network message types._
-
-#### A few caveats (and features)
-
-There are a couple of caveats and features to be aware of:
-
-- A `Relay` will only work if it already has a connection to the `STOP` node
-- No `multihop` dialing is supported. It's a feature planed for upcoming releases (no date on this one)
- - `multihop` dialing is when several relays are used to establish the connection
-- It is possible to use explicit relay addresses to connect to a node, or even to listen for connections on. See next section to learn how to do this.
-
-#### A word on circuit relay addresses
-
-A circuit relay address is a [multiaddress](https://multiformats.io/multiaddr/) that describes how to either connect to a peer over a relay (or relays), or allow a peer to announce it is reachable over a particular relay or any relay it is already connected to.
-
-Circuit relay addresses are very flexible and can describe many different aspects of how to esablish the relayed connection. In its simplest form, it looks something like this:
-
-- `/p2p-circuit/p2p/QmPeer`
-
-If we want to be specific as to which transport we want to use to establish the relay, we can encode that in the address as well:
-
-- `/ip4/127.0.0.1/tcp/65000/p2p/QmRelay/p2p-circuit/p2p/QmPeer`
-
-This tells us that we want to use `QmRelay` located at address 127.0.0.1 and port 65000.
-
-- `/ip4/127.0.0.1/tcp/65000/p2p/QmRelay/p2p-circuit/ip4/127.0.0.1/tcp/8080/ws/p2p/QmPeer`
-
-We can take it a step further and encode the same information for the destination peer. In this case, we have it located at 127.0.0.1 on port 8080 and using a Web sockets transport!
-
-- `/ip4/127.0.0.1/tcp/65000/p2p/QmRelay/p2p-circuit`
-
-If a node is configured with this address, it will use the specified host (`/ip4/127.0.0.1/tcp/65000/p2p/QmRelay`) as a relay and it will be reachable over this relay.
- - There could multiple addresses of this sort specified in the config, in which case the node will be reachable over all of them.
- - This is useful if, for example, the node is behind a firewall but wants to be reachable from the outside over a specific relay.
-
-Other use-cases are also supported by this scheme, e.g. we can have multiple hops (circuit-relay nodes) encoded in the address, something planed for future releases.
-
-## Step-by-step instructions
-
-Here's what we are going to be doing, today:
-
-1. Install and configure `go-ipfs` and `js-ipfs` nodes
-2. Configure and run the js or go ipfs node
-3. Configure and run the bundled example
-4. Connect the two browser nodes to the circuit relay
-5. Dial the two browser nodes using a `/p2p-circuit` address
-6. Finally, send data from one browser using the bundled example!
-
-> We should end up with something similar to the bellow screenshot after we've gone through all the steps:
-
-
-
-Let's go.
-
-## Before you start
-
-First clone this repo, install dependencies in the project root and build the project.
-
-```console
-$ git clone https://github.com/ipfs/js-ipfs.git
-$ cd js-ipfs
-$ npm install
-$ npm run build
-```
-
-## Running the example
-
-### 1. Set up
-
-You'll need to have an implementation of IPFS running on your machine. Currently, this means either go-ipfs or js-ipfs.
-
-Installing go-ipfs can be done by installing the binary [here](https://ipfs.io/ipns/dist.ipfs.io/#go-ipfs). Alternatively, you could follow the instructions in the README at [ipfs/go-ipfs](https://github.com/ipfs/go-ipfs).
-
-Installing js-ipfs requires you to have node and [npm](https://www.npmjs.com). Then, you simply run:
-
-```sh
-> npm install --global ipfs
-...
-> jsipfs --help
-Commands:
-...
-```
-
-This will alias `jsipfs` on your machine; this is to avoid issues with `go-ipfs` being called `ipfs`.
-
-At this point, you have either js-ipfs or go-ipfs running. Now, initialize it:
-
-```sh
-> ipfs init
-# or
-> jsipfs init
-```
-
-This will set up your IPFS repo in your home directory.
-
-#### Configure and run the js or go ipfs node
-
-You can use a `go-ipfs` or a `js-ipfs` node as a relay. We'll demonstrate how to set both up in this tutorial and we encourage you to try both out. That said, either js or go should do the trick!
-
-##### Setting up a `go-ipfs` node
-
-In order to enable the relay functionality in `go-ipfs` we need to edit it's configuration file, located under `~/.ipfs/config`:
-
-```json
- "Swarm": {
- "AddrFilters": null,
- "ConnMgr": {
- "GracePeriod": "20s",
- "HighWater": 900,
- "LowWater": 600,
- "Type": "basic"
- },
- "DisableBandwidthMetrics": false,
- "DisableNatPortMap": false,
- "DisableRelay": false,
- "EnableRelayHop": true
- }
-```
-
-The two options we're looking for are `DisableRelay` and `EnableRelayHop`. We want the former (`DisableRelay`) set to `false` and the latter (`EnableRelayHop`) to `true`, just like in the example above. That should set our go node as a relay.
-
-We also need to make sure our go node can be dialed from the browser. For that, we need to enable a transport that both the browser and the go node can communicate over. We will use the web sockets transport, although there are others that can be used, such as `webrtc-star` and `websocket-star`. To enable the transport and set the interface and port we need to edit the `~/.ipfs/config` one more time. Let's find the `Swarm` array and add our desired address there. I picked `/ip4/0.0.0.0/tcp/4004/ws` because it is a port I know is not being used by anything on my machine, but we can also use port `0` so that the OS chooses a random available port for us — either one should work.
-
-```json
- "Swarm": [
- "/ip4/0.0.0.0/tcp/4001",
- "/ip4/0.0.0.0/tcp/4004/ws",
- "/ip6/::/tcp/4001"
- ],
-```
-
-The config should look similar to the above snippet after we've edited it.
-
-##### Setting up a `js-ipfs` node
-
-We need to go through similar steps to enable circuit relay in `jsipfs`. However, the config options are slightly different — that should change once this feature is not marked as experimental, but for now we have to deal with two different sets of options.
-
-Just as we did with `go-ipfs`, go ahead and edit `js-ipfs` config file located under `~/.jsipfs/config`. Let's add the following config:
-
-```js
- "relay": {
- "enabled": true,
- "hop": {
- "enabled": true
- }
- }
-```
-
-Note that we don't have to do anything to enable the `websocket` transport as it is enabled by default in `jsipfs`.
-
-##### Starting the relay node
-
-We can start the relay nodes by either running `ipfs daemon` or `jsipfs daemon`:
-
-**go ipfs**
-
-```console
-$ ipfs daemon
-Initializing daemon...
-Swarm listening on /ip4/127.0.0.1/tcp/4001
-Swarm listening on /ip4/192.168.1.132/tcp/4001
-Swarm listening on /ip6/::1/tcp/4001
-Swarm listening on /p2p-circuit/p2p/QmY73BLYav2gYc9PCEnjQqbfSGiqFv3aMsRXNyKFGtUoGF
-Swarm announcing /ip4/127.0.0.1/tcp/4001
-Swarm announcing /ip4/186.4.18.182/tcp/58986
-Swarm announcing /ip4/192.168.1.132/tcp/4001
-Swarm announcing /ip6/::1/tcp/4001
-API server listening on /ip4/127.0.0.1/tcp/5001
-Gateway (readonly) server listening on /ip4/127.0.0.1/tcp/8080
-Daemon is ready
-```
-
-In the case of go ipfs, the crucial `/p2p/Qm...` part of the multiaddr might be missing. In that case, you can get it by running the `ipfs id` command.
-
-```console
-$ ipfs id
-{
- "ID": "QmY73BLYav2gYc9PCEnjQqbfSGiqFv3aMsRXNyKFGtUoGF",
- "PublicKey": "CAASpgIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC84qPFzqajCfnvaJunqt48S1LIBRthXV60q5QClL+dUfOOU/m7v1ZcpNhvFFUN6tVCDaoT5AxEv0czxZiVx/njl6FVIc6tE1J+HWpc8cbAXNY6QbbyzKl/rjp7V8/QClE0JqgjIk84wnWGTwFhOEt0hnpu2XFt9iHaenSfg3EAa8K9MlbxmbawuxNLJJf7VZXkJrUNl6WOglAVU8Sqc4QaahCLVK5Dzo98zDBq1KDBxMbUgH0LTqzr6i+saxkEHZmBKO+mMVT3LzOUx1DQR4pLAw1qgoJstsIZEaJ2XLh975IiI7OKqWYH7+3NyNK2sldJK/4Zko4rH3irmnkAxLcFAgMBAAE=",
- "Addresses": [
- "/ip4/127.0.0.1/tcp/4001/p2p/QmY73BLYav2gYc9PCEnjQqbfSGiqFv3aMsRXNyKFGtUoGF",
- "/ip4/192.168.1.132/tcp/4001/p2p/QmY73BLYav2gYc9PCEnjQqbfSGiqFv3aMsRXNyKFGtUoGF",
- "/ip6/::1/tcp/4001/p2p/QmY73BLYav2gYc9PCEnjQqbfSGiqFv3aMsRXNyKFGtUoGF",
- "/ip4/186.4.18.182/tcp/13285/p2p/QmY73BLYav2gYc9PCEnjQqbfSGiqFv3aMsRXNyKFGtUoGF",
- "/ip4/186.4.18.182/tcp/13285/p2p/QmY73BLYav2gYc9PCEnjQqbfSGiqFv3aMsRXNyKFGtUoGF"
- ],
- "AgentVersion": "go-ipfs/0.4.14-dev/cb5bb7dd8",
- "ProtocolVersion": "ipfs/0.1.0"
-}
-```
-
-We can then grab the resolved multiaddr from the `Addresses` array — `/ip4/127.0.0.1/tcp/4004/ws/p2p/Qm...`. Let's note it down somewhere and move to the next step.
-
-**js ipfs**
-
-```console
-$ jsipfs daemon
-Initializing daemon...
-Swarm listening on /p2p-circuit/p2p/QmfQj8YwDdy1uP2DpZBa7k38rSGPvhHiC52cdAGWBqoVpq
-Swarm listening on /p2p-circuit/ip4/0.0.0.0/tcp/4002/p2p/QmfQj8YwDdy1uP2DpZBa7k38rSGPvhHiC52cdAGWBqoVpq
-Swarm listening on /p2p-circuit/ip4/127.0.0.1/tcp/4003/ws/p2p/QmfQj8YwDdy1uP2DpZBa7k38rSGPvhHiC52cdAGWBqoVpq
-Swarm listening on /ip4/127.0.0.1/tcp/4003/ws/p2p/QmfQj8YwDdy1uP2DpZBa7k38rSGPvhHiC52cdAGWBqoVpq
-Swarm listening on /ip4/127.0.0.1/tcp/4002/p2p/QmfQj8YwDdy1uP2DpZBa7k38rSGPvhHiC52cdAGWBqoVpq
-Swarm listening on /ip4/192.168.1.132/tcp/4002/p2p/QmfQj8YwDdy1uP2DpZBa7k38rSGPvhHiC52cdAGWBqoVpq
-API is listening on: /ip4/127.0.0.1/tcp/5002
-Gateway (readonly) is listening on: /ip4/127.0.0.1/tcp/9090
-Daemon is ready
-```
-
-Look out for an address similar to `/ip4/127.0.0.1/tcp/4003/ws/p2p/Qm...`. Note it down somewhere, and let's move on to the next step.
-
-### 2. Configure and run the bundled example
-
-Now that we have ipfs installed and initialized, let's set up the included example. This is a standard npm package, so the usual `npm install` should get us going. Let's `cd` into the `examples/circuit-relaying` directory.
-
-We should be able to run the project with `npm start` and get output similar to:
-
-```sh
-npm start
-Server running at http://localhost:1234
-```
-
-The bundled example is a simple chat app that uses another cool ipfs feature - [pubsub](https://github.com/libp2p/specs/tree/master/pubsub). Let's open up a browser and paste the above url into the address bar. We should see something similar to the following image:
-
-
-
-### 3. Connect the two browser nodes to the circuit relay
-
-In order for our browser nodes to be able to messages each other, we need to get them connected. But to do that, we need to use a relay - browser nodes can't be connected directly because of lack of socket support.
-
-Remember the caveat above `Currently a Relay will only work if it already has a connection to the STOP node`? This means that we need to connect our browser nodes to the relay node first.
-
-Having both browsers running side by side (as shown in the first screenshot), enter the `/ip4/127.0.0.1/tcp/4003/ws/p2p/...` address noted above into the `Connect to Peer` field and hit the `Connect` button:
-
-
-
-After connecting to the IPFS node, we should see the relay peer show up under the `Swarm Peers` box.
-
-
-
-Let's repeat the same steps with the second tab. Now, both of our browser nodes should be connected to the relay and we can move on to the next step.
-
-### 4. Dial the two browser nodes using a `/p2p-circuit` address
-
-Now that our browsers are both connected to the relay peer, let's get them connected to each other. Create the p2p circuit address as follows:
-
-```
-${RELAY_ADDR}/p2p-circuit/p2p/${PEER_ID}
-```
-
-Here `${RELAY_ADDR}` is the multiaddr of the circuit relay node that you pasted into the "Connect to Peer" box in step 3, and `${PEER_ID}` is the id of the node we wish to connect to which can be found in the "Peer id" box of the browser window.
-
-Use the id from the "Peer id" box in the second browser window in the relay address you paste into the first browser, then repeat this step using the relay address of the first window in the second.
-
-
-
-Let's hit the `Connect` button on each of the tabs and we should get the two browsers connected and join the chat room.
-
-
-
-### 5. Send data browser to browser.
-
-Now that we have the two browsers connected, let's try the app out. Type a few words in one of the browser windows and you should see them appear in the other as well!
-
-
-
-Thats it!
-
-### So what just happened?
-
-Good question!
-
-- We used [js-ipfs](htpps://github.com/ipfs/js-ipfs) running in the browser with circuit relay enabled:
- - _Notice the `relay.enabled` below_
-
-you can find it in [src/app.js](src/app.js)
-
-```js
-const ipfs = await IPFS.create({
- repo: repo(),
- relay: {
- enabled: true,
- hop: {
- enabled: true
- }
- },
- config: {
- Bootstrap: []
- }
-})
-```
-
-- We connected the browser nodes to an external node over its websocket transport using the `/ip4/127.0.0.1/tcp/4003/ws/p2p/...` multiaddr. That external node happens to be a `HOP` node, meaning that it can relay connections for our browsers (and other nodes) allowing them to connect
-
-- And finally we connected the two browser nodes using the `/p2p-circuit/p2p/...` multiaddr. Take a look at the code below in [src/app.js](src/app.js#L103...L108) - lines 103-108
-
-```js
-try {
- await ipfs.swarm.connect(peer)
-} catch (err) {
- return console.error(err)
-}
-$pAddrs.innerHTML += `${peer.trim()} `
-```
-
-The above code snippet handles connecting to other nodes using `ipfs.swarm.connect`. Notice how there wasn't anything special we had to do to use the circuit once we had everything connected; all the magic is in the multiaddr! [Multiaddrs](https://multiformats.io/multiaddr/) are **AWESOME**!
-
-I encourage the reader to take a look at the bundled app code to see how the browser nodes get setup, suffice to say nothing changes from the perspective of using an `IPFS` node in js code, apart from the new `EXPERIMENTAL` options.
-
-Finally, a side note on [pubsub](https://github.com/libp2p/specs/blob/master/pubsub/README.md). We've used the amazing [ipfs-pubsub-room](https://github.com/ipfs-shipyard/ipfs-pubsub-room) module, to enable the chat functionality. Make sure to take a look at the demo [video](https://www.youtube.com/watch?v=Nv_Teb--1zg) that explains how pubsub works and how it can be used to build other applications!
-
-Cheers!
diff --git a/examples/circuit-relaying/img/img1.png b/examples/circuit-relaying/img/img1.png
deleted file mode 100644
index 7838862d9e..0000000000
Binary files a/examples/circuit-relaying/img/img1.png and /dev/null differ
diff --git a/examples/circuit-relaying/img/img2.png b/examples/circuit-relaying/img/img2.png
deleted file mode 100644
index 97bf7ce4d9..0000000000
Binary files a/examples/circuit-relaying/img/img2.png and /dev/null differ
diff --git a/examples/circuit-relaying/img/img3.png b/examples/circuit-relaying/img/img3.png
deleted file mode 100644
index 9201ef519a..0000000000
Binary files a/examples/circuit-relaying/img/img3.png and /dev/null differ
diff --git a/examples/circuit-relaying/img/img4.png b/examples/circuit-relaying/img/img4.png
deleted file mode 100644
index 5dd430bb5f..0000000000
Binary files a/examples/circuit-relaying/img/img4.png and /dev/null differ
diff --git a/examples/circuit-relaying/img/img5.png b/examples/circuit-relaying/img/img5.png
deleted file mode 100644
index 49d207ab69..0000000000
Binary files a/examples/circuit-relaying/img/img5.png and /dev/null differ
diff --git a/examples/circuit-relaying/img/img6.png b/examples/circuit-relaying/img/img6.png
deleted file mode 100644
index c1b68ea7a8..0000000000
Binary files a/examples/circuit-relaying/img/img6.png and /dev/null differ
diff --git a/examples/circuit-relaying/img/img7.png b/examples/circuit-relaying/img/img7.png
deleted file mode 100644
index 1b8be10d62..0000000000
Binary files a/examples/circuit-relaying/img/img7.png and /dev/null differ
diff --git a/examples/circuit-relaying/index.html b/examples/circuit-relaying/index.html
deleted file mode 100644
index aecb20e112..0000000000
--- a/examples/circuit-relaying/index.html
+++ /dev/null
@@ -1,61 +0,0 @@
-
-
-
-
-IPFS simple messaging
-
-
-
-
-
-
- IPFS Simple Messaging
-
-
-
-
-
- Room (double click to change):
-
-
-
-
-
- Message:
-
- Send
-
-
-
-
-
-
- Connect to Peer:
-
- Connect
-
-
-
-
-
-
-
-
-
diff --git a/examples/circuit-relaying/main.css b/examples/circuit-relaying/main.css
deleted file mode 100644
index c9f7fb17f3..0000000000
--- a/examples/circuit-relaying/main.css
+++ /dev/null
@@ -1,253 +0,0 @@
-* {
- box-sizing: border-box;
-}
-
-body {
- height: 100%;
-}
-
-body {
- font-family: sans-serif;
- color: white;
- background: linear-gradient(to bottom, #041727 0%, #062b3f 100%);
- pointer-events: auto;
-}
-
-h1,
-h2,
-h3 {
- margin: 0;
-}
-
-h1 {
- font-size: 2em;
- font-weight: 300;
-}
-
-h2 {
- font-size: 1.25em;
- font-weight: 700;
-}
-
-h3 {
- font-size: 1.0em;
- font-weight: 700;
-}
-
-main,
-header {
- filter: none;
-}
-
-.dragover-popup {
- position: fixed;
- top: 0.5em;
- left: 0.5em;
- width: calc(100% - 1em);
- height: calc(100% - 1em);
- background-color: rgba(0, 0, 0, 0.5);
- display: none;
- pointer-events: none;
-}
-
-.dragover-popup h1 {
- position: fixed;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%)
-}
-
-body.dragging main,
-body.dragging header {
- filter: blur(5px);
-}
-
-body.dragging .dragover-popup {
- display: block;
-}
-
-header {
- text-align: center;
- display: flex;
- justify-content: center;
- align-items: center;
- padding: 3em 0;
-}
-
-ul {
- margin: 0;
- padding: 0;
- list-style: none;
-}
-
-ul li {
- margin: 1em 0;
- font-size: 1em;
- font-family: monospace;
- word-wrap: break-word;
-}
-
-button {
- background-color: rgba(0, 0, 0, 0.2);
- color: #6acad1;
- border: 2px solid #6acad1;
- font-size: 1em;
- padding: 0.625em 1.5em;
- border-radius: 0.125em;
- margin: .5em 0;
-}
-
-button.full {
- margin-right: 0;
- margin-left: 0;
- width: 100%;
-}
-
-button:hover {
- color: white;
- border: 2px solid white;
- cursor: pointer;
-}
-
-.address {
- font-family: monospace
-}
-
-.disabled *,
-input:disabled,
-button:disabled {
- opacity: 0.2;
-}
-
-input {
- width: 100%;
- border: 2px solid rgba(0, 0, 0, 0.2);
- color: black;
- padding: 0.7em;
- border-radius: 2px;
-}
-
-input:hover,
-input:focus,
-input:active {
- border-color: #6acad1;
-}
-
-input,
-button {
- outline: none;
-}
-
-main {
- width: 90%;
- margin: 0 auto;
-}
-
-.buttons,
-.columns {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- height: 100%;
-}
-
-.msgs-box {
- flex: 1 1 0px;
- overflow-y: scroll;
- min-height: 250px;
-}
-
-.peers-box {
- flex: 1 1 0px;
- overflow-y: scroll;
- min-height: 182px;
-}
-
-.addrs-box {
- flex: 1;
- overflow-y: scroll;
- max-height: 273px;
-}
-
-.row {
- display: flex;
- flex-direction: column;
-}
-
-.buttons>button,
-.columns>div {
- width: calc(33% - 0.5em);
-}
-
-.buttons>button {
- margin: 0 0 1em;
-}
-
-.box {
- background-color: rgba(255, 255, 255, 0.05);
- padding: 1em;
- margin-bottom: 1em;
-}
-
-.box>h2 {
- display: block;
- border-bottom: 2px solid rgba(255, 255, 255, 0.1);
- border-right: 0;
- border-left: 0;
- text-align: center;
- padding-bottom: 0.5em;
- margin-bottom: 1em;
-}
-
-.errors {
- grid-area: errors;
- color: red;
- font-style: italic;
- font-size: 1.125em;
- display: block;
- margin: 0 0 1em;
-}
-
-.errors.hidden {
- display: none;
-}
-
-table {
- width: 100%;
- margin: 1em 0;
- word-break: break-all;
- border-collapse: collapse;
-}
-
-table thead {
- background-color: rgba(255, 255, 255, 0.1);
- font-weight: normal
-}
-
-table th,
-table td {
- padding: 0.5em 0;
-}
-
-table td:last-child,
-table th:last-child {
- width: 20%;
- text-align: center;
-}
-
-table td:first-child {
- width: 45%;
-}
-
-table td:nth-child(2) {
- width: 35%;
- font-family: monospace;
-}
-
-table tr:hover {
- background-color: rgba(0, 0, 0, 0.2)
-}
-
-table a {
- color: inherit;
-}
\ No newline at end of file
diff --git a/examples/circuit-relaying/package.json b/examples/circuit-relaying/package.json
deleted file mode 100644
index a44e188029..0000000000
--- a/examples/circuit-relaying/package.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "name": "example-circuit-relaying",
- "description": "IPFS quick msg",
- "version": "0.1.1",
- "main": "./dist/index.html",
- "private": true,
- "scripts": {
- "clean": "rimraf ./dist",
- "build": "parcel build index.html --no-scope-hoist",
- "start": "parcel index.html",
- "deploy": "ipfs add -r --quieter dist",
- "test": "test-ipfs-example"
- },
- "author": "Dmitriy Ryajov ",
- "license": "MIT",
- "dependencies": {
- "delay": "^5.0.0",
- "ipfs": "^0.55.3",
- "ipfs-pubsub-room": "^2.0.1",
- "libp2p-websockets": "^0.15.6",
- "uint8arrays": "^2.1.3"
- },
- "devDependencies": {
- "execa": "^5.0.0",
- "ipfs-css": "^1.3.0",
- "ipfs-http-client": "^50.1.1",
- "parcel": "2.0.0-beta.2",
- "rimraf": "^3.0.2",
- "tachyons": "^4.11.1",
- "test-ipfs-example": "^3.0.0"
- },
- "browserslist": [
- "last 2 versions and not dead and > 2%"
- ]
-}
diff --git a/examples/circuit-relaying/src/app.js b/examples/circuit-relaying/src/app.js
deleted file mode 100644
index ea8963b358..0000000000
--- a/examples/circuit-relaying/src/app.js
+++ /dev/null
@@ -1,124 +0,0 @@
-/* eslint-disable no-console */
-'use strict'
-
-const IPFS = require('ipfs')
-const WS = require('libp2p-websockets')
-const filters = require('libp2p-websockets/src/filters')
-const transportKey = WS.prototype[Symbol.toStringTag]
-const Helpers = require('./helpers')
-
-document.addEventListener('DOMContentLoaded', async () => {
- const $peerId = document.querySelector('#peer-id')
- const $message = document.querySelector('#message')
- const $msgs = document.querySelector('#msgs')
- const $send = document.querySelector('#send')
- const $peer = document.querySelector('#peer')
- const $connect = document.querySelector('#connect')
- const $pAddrs = document.querySelector('#peers-addrs')
- const $room = document.querySelector('#room')
- const $roomId = document.querySelector('#room-id')
-
- let roomName = 'default'
- const fragment = window.location.hash.substr(1)
- if (fragment) {
- roomName = fragment
- }
-
- $pAddrs.value = ''
- $room.innerText = roomName
-
- const repo = () => {
- return 'ipfs/pubsub-demo/' + Math.random()
- }
-
- const ipfs = await IPFS.create({
- repo: repo(),
- relay: {
- enabled: true, // enable relay dialer/listener (STOP)
- hop: {
- enabled: true // make this node a relay (HOP)
- }
- },
- config: {
- Bootstrap: []
- },
- libp2p: {
- config: {
- transport: {
- // This is added for local demo!
- // In a production environment the default filter should be used
- // where only DNS + WSS addresses will be dialed by websockets in the browser.
- [transportKey]: {
- filter: filters.all
- }
- }
- }
- }
- })
-
- const peersSet = new Set()
- const helpers = Helpers(ipfs, peersSet)
- const createRoom = helpers.createRoom
- const sendMsg = helpers.sendMsg
- const updatePeers = helpers.updatePeers
- const updateAddrs = helpers.updateAddrs
- const updateSwarmPeers = helpers.updateSwarmPeers
-
- const info = await ipfs.id()
- console.log('IPFS node ready with id ' + info.id)
-
- let room = createRoom(roomName)
-
- $peerId.setAttribute('style', '')
- $peerId.innerHTML = `${info.id} `
-
- $send.addEventListener('click', () => {
- sendMsg(room)
- })
-
- $room.addEventListener('dblclick', () => {
- $room.setAttribute('style', 'display: none')
- $roomId.setAttribute('style', 'display: inline')
- })
-
- $roomId.addEventListener('keyup', (event) => {
- const kp = event.keyCode || event.which
- if (kp === 13 && $roomId.value.length > 0) {
- const name = $roomId.value
- $room.innerText = name
-
- $room.setAttribute('style', 'display: inline')
- $roomId.setAttribute('style', 'display: none')
-
- $roomId.value = ''
- $msgs.innerHTML = ''
- window.location.hash = name
- room = createRoom(name)
- peersSet.clear()
- updatePeers(peersSet)
- } else if (kp === 27) {
- $roomId.value = ''
- $room.setAttribute('style', 'display: inline')
- $roomId.setAttribute('style', 'display: none')
- }
- })
-
- $message.addEventListener('keyup', (event) => {
- const kp = event.keyCode || event.which
- if (kp === 13) {
- sendMsg(room)
- }
- })
-
- $connect.addEventListener('click', async () => {
- const peer = $peer.value.trim()
- $peer.value = ''
- try {
- await ipfs.swarm.connect(peer)
- await updateAddrs(ipfs)
- await updateSwarmPeers(ipfs)
- } catch (err) {
- return console.error(err)
- }
- })
-})
diff --git a/examples/circuit-relaying/src/helpers.js b/examples/circuit-relaying/src/helpers.js
deleted file mode 100644
index 705ed2eca8..0000000000
--- a/examples/circuit-relaying/src/helpers.js
+++ /dev/null
@@ -1,82 +0,0 @@
-/* eslint-disable no-console */
-'use strict'
-
-const uint8ArrayToString = require('uint8arrays/to-string')
-
-const Room = require('ipfs-pubsub-room')
-const $message = document.querySelector('#message')
-const $msgs = document.querySelector('#msgs')
-const $addrs = document.querySelector('#addrs')
-const $peers = document.querySelector('#peers')
-const $pAddrs = document.querySelector('#peers-addrs')
-
-const NAMESPACE = 'ipfs-quick-msg'
-
-const mkRoomName = (name) => {
- return `${NAMESPACE}-${name}`
-}
-
-module.exports = (ipfs, peersSet) => {
- const createRoom = (name) => {
- const room = new Room(ipfs, mkRoomName(name))
-
- room.on('peer joined', (peer) => {
- console.log('peer ' + peer + ' joined')
- peersSet.add(peer)
- updatePeers()
- })
-
- room.on('peer left', (peer) => {
- console.log('peer ' + peer + ' left')
- peersSet.delete(peer)
- updatePeers()
- })
-
- // send and receive messages
- room.on('message', (message) => {
- console.log('got message from ' + message.from + ': ' + uint8ArrayToString(message.data))
- const node = document.createElement('li')
- node.innerText = `${message.from.substr(-4)}: ${uint8ArrayToString(message.data)}`
- $msgs.appendChild(node)
- })
-
- return room
- }
-
- const sendMsg = (room) => {
- const msg = $message.value
- if (msg.length > 0) {
- $message.value = ''
- room.broadcast(msg)
- $message.focus()
- }
- }
-
- const updatePeers = () => {
- const tags = Array.from(peersSet).map((p) => {
- return `${p} `
- })
- $peers.innerHTML = tags.join('')
- }
-
- const updateSwarmPeers = async (ipfs) => {
- const peers = await ipfs.swarm.peers()
-
- $pAddrs.innerHTML = peers.map(peer => `${peer.peer} `).join('')
- }
-
- const updateAddrs = async (ipfs) => {
- const info = await ipfs.id()
- const relayAddrs = []
-
- $addrs.innerHTML = relayAddrs.map((addr) => `${addr.toString()} `).join('')
- }
-
- return {
- createRoom,
- sendMsg,
- updatePeers,
- updateSwarmPeers,
- updateAddrs
- }
-}
diff --git a/examples/circuit-relaying/test.js b/examples/circuit-relaying/test.js
deleted file mode 100644
index 274e695e6b..0000000000
--- a/examples/circuit-relaying/test.js
+++ /dev/null
@@ -1,157 +0,0 @@
-'use strict'
-
-const fs = require('fs-extra')
-const os = require('os')
-const path = require('path')
-const execa = require('execa')
-const delay = require('delay')
-const { createFactory } = require('ipfsd-ctl')
-const df = createFactory({
- ipfsModule: require('ipfs'),
- ipfsHttpModule: require('ipfs-http-client')
-})
-const {
- startServer
-} = require('test-ipfs-example/utils')
-const pkg = require('./package.json')
-
-async function testUI (url, relayAddr, relayId, localPeerIdFile, remotePeerIdFile) {
- const proc = execa(require.resolve('test-ipfs-example/node_modules/.bin/nightwatch'), ['--config', require.resolve('test-ipfs-example/nightwatch.conf.js'), path.join(__dirname, 'test.js')], {
- cwd: path.resolve(__dirname, '../'),
- env: {
- ...process.env,
- CI: true,
- IPFS_EXAMPLE_TEST_URL: url,
- IPFS_RELAY_ADDRESS: relayAddr,
- IPFS_RELAY_ID: relayId,
- IPFS_LOCAL_PEER_ID_FILE: localPeerIdFile,
- IPFS_REMOTE_PEER_ID_FILE: remotePeerIdFile
- },
- all: true
- })
- proc.all.on('data', (data) => {
- process.stdout.write(data)
- })
-
- await proc
-}
-
-async function runTest () {
- const relay = await df.spawn({
- type: 'proc',
- test: true,
- ipfsOptions: {
- relay: {
- enabled: true,
- hop: {
- enabled: true
- }
- },
- config: {
- Addresses: {
- Swarm: [
- '/ip4/127.0.0.1/tcp/0/ws'
- ]
- }
- }
- }
- })
- const app1 = await startServer(__dirname)
- const app2 = await startServer(__dirname)
-
- try {
- const id = await relay.api.id()
- const address = id.addresses
- .map(ma => ma.toString())
- .find(addr => addr.includes('/ws/p2p/Qm'))
-
- if (!address) {
- throw new Error(`Could not find web socket address in ${id.addresses}`)
- }
-
- const peerA = path.join(os.tmpdir(), `test-${Date.now()}-a.txt`)
- const peerB = path.join(os.tmpdir(), `test-${Date.now()}-b.txt`)
-
- await Promise.all([
- testUI(app1.url, id.addresses[0], id.id, peerA, peerB),
- testUI(app2.url, id.addresses[0], id.id, peerB, peerA)
- ])
- } finally {
- await relay.stop()
- await app1.stop()
- await app2.stop()
- }
-}
-
-module.exports = runTest
-
-module.exports[pkg.name] = function (browser) {
- let local = {}
- let remote = {}
-
- browser
- .url(process.env.IPFS_EXAMPLE_TEST_URL)
- .waitForElementVisible('#peer-id') // Wait for ipfs to start
- .clearValue('#peer')
- .setValue('#peer', process.env.IPFS_RELAY_ADDRESS)
- .pause(100)
- .click('#connect')
-
- browser.expect.element('#peers-addrs').text.to.contain(process.env.IPFS_RELAY_ID)
- browser.expect.element('#peer-id').text.to.not.equal('')
-
- // exchange peer info
- browser.getText('#peer-id', (result) => {
- local.id = result.value.trim()
- console.info(`got local peer id ${local.id}`) // eslint-disable-line no-console
- })
- .perform(async (browser, done) => {
- console.info(`writing local data ${local.id}`) // eslint-disable-line no-console
- await fs.writeJson(process.env.IPFS_LOCAL_PEER_ID_FILE, local)
-
- console.info('reading remote circuit relay address') // eslint-disable-line no-console
- for (let i = 0; i < 100; i++) {
- try {
- remote = await fs.readJson(process.env.IPFS_REMOTE_PEER_ID_FILE, {
- encoding: 'utf8'
- })
-
- if (!remote || !remote.id) {
- throw new Error('Remote circuit relay address was empty')
- }
-
- console.info(`got remote circuit relay address ${remote.id}`) // eslint-disable-line no-console
- done()
-
- break
- } catch (err) {
- // ignore
- }
-
- await delay(1000)
- }
-
- const relayAddr = `${process.env.IPFS_RELAY_ADDRESS}/p2p-circuit/p2p/${remote.id}`
-
- console.info(`connecting to remote peer ${relayAddr}`) // eslint-disable-line no-console
-
- browser
- .clearValue('#peer')
- .setValue('#peer', relayAddr)
- .pause(1000)
- .click('#connect')
-
- browser.expect.element('#peers-addrs').text.to.contain(remote.id)
-
- browser
- .clearValue('#message')
- .setValue('#message', 'hello')
- .pause(1000)
- .click('#send')
-
- browser.expect.element('#msgs').text.to.contain(`${remote.id.substr(-4)}: hello`)
- browser.expect.element('#msgs').text.to.contain(`${local.id.substr(-4)}: hello`)
- })
-
- browser.end()
-}
diff --git a/examples/custom-ipfs-repo/CHANGELOG.md b/examples/custom-ipfs-repo/CHANGELOG.md
deleted file mode 100644
index c9dc1ed09e..0000000000
--- a/examples/custom-ipfs-repo/CHANGELOG.md
+++ /dev/null
@@ -1,38 +0,0 @@
-# Change Log
-
-All notable changes to this project will be documented in this file.
-See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
-
-## [0.2.1](https://github.com/ipfs/js-ipfs/compare/example-custom-ipfs-repo@0.2.0...example-custom-ipfs-repo@0.2.1) (2020-04-08)
-
-**Note:** Version bump only for package example-custom-ipfs-repo
-
-
-
-
-
-# 0.2.0 (2020-03-31)
-
-
-### Bug Fixes
-
-* examples after files API refactor ([#1740](https://github.com/ipfs/js-ipfs/issues/1740)) ([34ec036](https://github.com/ipfs/js-ipfs/commit/34ec036b0df9563a014c1348f0a056c1f98aadad))
-
-
-### Code Refactoring
-
-* return peer IDs as strings not CIDs ([#2729](https://github.com/ipfs/js-ipfs/issues/2729)) ([16d540c](https://github.com/ipfs/js-ipfs/commit/16d540c540f375061d83dafaf6c38d0b7c4a3d60))
-
-
-### BREAKING CHANGES
-
-* Where `PeerID`s were previously [CID](https://www.npmjs.com/package/cids)s, now they are Strings
-
-- `ipfs.bitswap.stat().peers[n]` is now a String (was a CID)
-- `ipfs.dht.findPeer().id` is now a String (was a CID)
-- `ipfs.dht.findProvs()[n].id` is now a String (was a CID)
-- `ipfs.dht.provide()[n].id` is now a String (was a CID)
-- `ipfs.dht.put()[n].id` is now a String (was a CID)
-- `ipfs.dht.query()[n].id` is now a String (was a CID)
-- `ipfs.id().id` is now a String (was a CID)
-- `ipfs.id().addresses[n]` are now [Multiaddr](https://www.npmjs.com/package/multiaddr)s (were Strings)
diff --git a/examples/custom-ipfs-repo/README.md b/examples/custom-ipfs-repo/README.md
deleted file mode 100644
index 6733092de9..0000000000
--- a/examples/custom-ipfs-repo/README.md
+++ /dev/null
@@ -1,42 +0,0 @@
-# Customizing the IPFS Repo
-
-This example shows you how to customize your repository, including where your data is stored and how the repo locking is managed. Customizing your repo makes it easier to extend IPFS for your particular needs. You may want to customize your repo if:
-
-* If you want to store data somewhere that’s not on your local disk, like S3, a Redis instance, a different machine on your local network, or in your own database system, like MongoDB or Postgres, you might use a custom datastore.
-* If you have multiple browser windows or workers sharing the same IPFS storage, you might want to use a custom lock to coordinate between them. (Locking is currently only used to ensure a single IPFS instance can access a repo at a time. This check is done on `repo.open()`. A more complex lock, coupled with a custom datastore, could allow for safe writes to a single datastore from multiple IPFS nodes.)
-
-You can find full details on customization in the [IPFS Repo Docs](https://github.com/ipfs/js-ipfs-repo#setup).
-
-## Before you start
-
-First clone this repo, install dependencies in the project root and build the project.
-
-```console
-$ git clone https://github.com/ipfs/js-ipfs.git
-$ cd js-ipfs
-$ npm install
-$ npm run build
-```
-
-## Running the example
-
-```
-> npm start
-```
-
-## Other Options
-
-### Custom `storageBackends`
-This example leverages [datastore-fs](https://github.com/ipfs/js-datastore-fs) to store all data in the IPFS Repo. You can customize each of the 4 `storageBackends` to meet the needs of your project. For an example on how to manage your entire IPFS REPO on S3, you can see the [datastore-s3 example](https://github.com/ipfs/js-datastore-s3/tree/master/examples/full-s3-repo).
-
-### Custom Repo Lock
-This example uses one of the locks that comes with IPFS Repo. If you would like to control how locking happens, such as with a centralized S3 IPFS Repo, you can pass in your own custom lock. See [custom-lock.js](./custom-lock.js) for an example of a custom lock that can be used for [datastore-s3](https://github.com/ipfs/js-datastore-s3). This is also being used in the [full S3 example](https://github.com/ipfs/js-datastore-s3/tree/master/examples/full-s3-repo).
-
-```js
-const S3Lock = require('./custom-lock')
-
-const repo = new Repo('/tmp/.ipfs', {
- ...
- lock: new S3Lock(s3DatastoreInstance)
-})
-```
\ No newline at end of file
diff --git a/examples/custom-ipfs-repo/custom-lock.js b/examples/custom-ipfs-repo/custom-lock.js
deleted file mode 100644
index a8b36dbdac..0000000000
--- a/examples/custom-ipfs-repo/custom-lock.js
+++ /dev/null
@@ -1,100 +0,0 @@
-'use strict'
-
-const PATH = require('path')
-const uint8ArrayFromString = require('uint8arrays/from-string')
-
-/**
- * Uses an object in an S3 bucket as a lock to signal that an IPFS repo is in use.
- * When the object exists, the repo is in use. You would normally use this to make
- * sure multiple IPFS nodes don’t use the same S3 bucket as a datastore at the same time.
- */
-class S3Lock {
- constructor (s3Datastore) {
- this.s3 = s3Datastore
- }
-
- /**
- * Returns the location of the lock file given the path it should be located at
- *
- * @private
- * @param {string} dir
- * @returns {string}
- */
- getLockfilePath (dir) {
- return PATH.join(dir, 'repo.lock')
- }
-
- /**
- * Creates the lock. This can be overriden to customize where the lock should be created
- *
- * @param {string} dir
- * @param {function(Error, LockCloser)} callback
- * @returns {void}
- */
- lock (dir, callback) {
- const lockPath = this.getLockfilePath(dir)
-
- this.locked(dir, (err, alreadyLocked) => {
- if (err || alreadyLocked) {
- return callback(new Error('The repo is already locked'))
- }
-
- // There's no lock yet, create one
- this.s3.put(lockPath, uint8ArrayFromString(''), (err, data) => {
- if (err) {
- return callback(err, null)
- }
-
- callback(null, this.getCloser(lockPath))
- })
- })
- }
-
- /**
- * Returns a LockCloser, which has a `close` method for removing the lock located at `lockPath`
- *
- * @param {string} lockPath
- * @returns {LockCloser}
- */
- getCloser (lockPath) {
- return {
- /**
- * Removes the lock. This can be overriden to customize how the lock is removed. This
- * is important for removing any created locks.
- *
- * @param {function(Error)} callback
- * @returns {void}
- */
- close: (callback) => {
- this.s3.delete(lockPath, (err) => {
- if (err && err.statusCode !== 404) {
- return callback(err)
- }
-
- callback(null)
- })
- }
- }
- }
-
- /**
- * Calls back on whether or not a lock exists. Override this method to customize how the check is made.
- *
- * @param {string} dir
- * @param {function(Error, boolean)} callback
- * @returns {void}
- */
- locked (dir, callback) {
- this.s3.get(this.getLockfilePath(dir), (err, data) => {
- if (err && err.message.match(/not found/)) {
- return callback(null, false)
- } else if (err) {
- return callback(err)
- }
-
- callback(null, true)
- })
- }
-}
-
-module.exports = S3Lock
diff --git a/examples/custom-ipfs-repo/index.js b/examples/custom-ipfs-repo/index.js
deleted file mode 100644
index d73c0086a0..0000000000
--- a/examples/custom-ipfs-repo/index.js
+++ /dev/null
@@ -1,106 +0,0 @@
-'use strict'
-
-const IPFS = require('ipfs')
-const Repo = require('ipfs-repo')
-const fsLock = require('ipfs-repo/src/lock')
-const all = require('it-all')
-const uint8ArrayFromString = require('uint8arrays/from-string')
-const uint8ArrayConcat = require('uint8arrays/concat')
-
-// Create our custom options
-const customRepositoryOptions = {
-
- /**
- * IPFS nodes store different information in separate storageBackends, or datastores.
- * Each storage backend can use the same type of datastore or a different one — you
- * could store your keys in a levelDB database while everything else is in files,
- * for example. (See https://github.com/ipfs/interface-datastore for more about datastores.)
- */
- storageBackends: {
- root: require('datastore-fs'), // version and config data will be saved here
- blocks: require('datastore-fs'),
- keys: require('datastore-fs'),
- datastore: require('datastore-fs')
- },
-
- /**
- * Storage Backend Options will get passed into the instantiation of their counterpart
- * in `storageBackends`. If you create a custom datastore, this is where you can pass in
- * custom constructor arguments. You can see an S3 datastore example at:
- * https://github.com/ipfs/js-datastore-s3/tree/master/examples/full-s3-repo
- *
- * NOTE: The following options are being overriden for demonstration purposes only.
- * In most instances you can simply use the default options, by not passing in any
- * overrides, which is recommended if you have no need to override.
- */
- storageBackendOptions: {
- root: {
- extension: '.ipfsroot', // Defaults to ''. Used by datastore-fs; Appended to all files
- errorIfExists: false, // Used by datastore-fs; If the datastore exists, don't throw an error
- createIfMissing: true // Used by datastore-fs; If the datastore doesn't exist yet, create it
- },
- blocks: {
- sharding: false, // Used by IPFSRepo Blockstore to determine sharding; Ignored by datastore-fs
- extension: '.ipfsblock', // Defaults to '.data'.
- errorIfExists: false,
- createIfMissing: true
- },
- keys: {
- extension: '.ipfskey', // No extension by default
- errorIfExists: false,
- createIfMissing: true
- },
- datastore: {
- extension: '.ipfsds', // No extension by default
- errorIfExists: false,
- createIfMissing: true
- }
- },
-
- /**
- * A custom lock can be added here. Or the build in Repo `fs` or `memory` locks can be used.
- * See https://github.com/ipfs/js-ipfs-repo for more details on setting the lock.
- */
- lock: fsLock
-}
-
-async function main () {
- // Initialize our IPFS node with the custom repo options
- const node = await IPFS.create({
- repo: new Repo('/tmp/custom-repo/.ipfs', customRepositoryOptions),
-
- // This just means we dont try to connect to the network which isn't necessary
- // to demonstrate custom repos
- config: {
- Bootstrap: []
- }
- })
-
- // Test the new repo by adding and fetching some data
- console.log('Ready')
- const { version } = await node.version()
- console.log('Version:', version)
-
- // Once we have the version, let's add a file to IPFS
- const file = await node.add({
- path: 'test-data.txt',
- content: uint8ArrayFromString('We are using a customized repo!')
- })
- // Log out the added files metadata and cat the file from IPFS
- console.log('\nAdded file:', file.path, file.cid)
-
- const data = uint8ArrayConcat(await all(node.cat(file.cid)))
-
- // Print out the files contents to console
- console.log('\nFetched file content:')
- process.stdout.write(data)
-
- // After everything is done, shut the node down
- console.log('\n\nStopping the node')
- await node.stop()
-
- // Let users know where they can inspect the repo
- console.log('Check "/tmp/custom-repo/.ipfs" to see what your customized repository looks like on disk.')
-}
-
-main()
diff --git a/examples/custom-ipfs-repo/package.json b/examples/custom-ipfs-repo/package.json
deleted file mode 100644
index 791cf5c46f..0000000000
--- a/examples/custom-ipfs-repo/package.json
+++ /dev/null
@@ -1,22 +0,0 @@
-{
- "name": "example-custom-ipfs-repo",
- "description": "Customizing your ipfs repo",
- "version": "1.0.0",
- "main": "index.js",
- "private": true,
- "scripts": {
- "start": "node index.js",
- "test": "test-ipfs-example"
- },
- "license": "MIT",
- "dependencies": {
- "datastore-fs": "4.0.0",
- "ipfs": "^0.55.3",
- "ipfs-repo": "^9.1.6",
- "it-all": "^1.0.4"
- },
- "devDependencies": {
- "execa": "^5.0.0",
- "test-ipfs-example": "^3.0.0"
- }
-}
diff --git a/examples/custom-ipfs-repo/test.js b/examples/custom-ipfs-repo/test.js
deleted file mode 100644
index aa857a1efb..0000000000
--- a/examples/custom-ipfs-repo/test.js
+++ /dev/null
@@ -1,23 +0,0 @@
-'use strict'
-
-const path = require('path')
-const execa = require('execa')
-const fs = require('fs')
-
-async function test () {
- const proc = execa('node', [path.join(__dirname, 'index.js')], {
- cwd: path.resolve(__dirname),
- all: true
- })
- proc.all.on('data', (data) => {
- process.stdout.write(data)
- })
-
- await proc
-
- if (!fs.existsSync('/tmp/custom-repo/.ipfs')) {
- throw new Error('Custom repo was not created at /tmp/custom-repo/.ipfs')
- }
-}
-
-module.exports = test
diff --git a/examples/custom-ipld-formats/README.md b/examples/custom-ipld-formats/README.md
deleted file mode 100644
index e74bca8f98..0000000000
--- a/examples/custom-ipld-formats/README.md
+++ /dev/null
@@ -1,31 +0,0 @@
-# Custom IPLD formats
-
-This example shows you how to configure an IPFS daemon with the ability to load extra IPLD formats so you can use them in your applications.
-
-## Before you start
-
-First clone this repo, install dependencies in the project root and build the project.
-
-```console
-$ git clone https://github.com/ipfs/js-ipfs.git
-$ cd js-ipfs
-$ npm install
-$ npm run build
-```
-
-## Running the example
-
-Running this example should result in metrics being logged out to the console every few seconds.
-
-```
-> npm start
-```
-
-## Play with the configuration!
-
-By default, IPFS is only configured to support a few common IPLD formats. Your application may require extra or more esoteric formats, in which case you can configure your node to support them using `options.ipld.formats` passed to the client or an in-process node or even a daemon if you start it with a wrapper.
-
-See the following files for different configuration:
-
-* [./in-process-node.js](./in-process-node.js) for running an in-process node as part of your confiugration
-* [./daemon-node.js](./daemon-node.js) for running a node as a separate daemon process
diff --git a/examples/custom-ipld-formats/daemon-node.js b/examples/custom-ipld-formats/daemon-node.js
deleted file mode 100644
index fae244020f..0000000000
--- a/examples/custom-ipld-formats/daemon-node.js
+++ /dev/null
@@ -1,100 +0,0 @@
-// ordinarily we'd open a PR against the multicodec module to get our
-// codec number added but since we're just testing we shim our new
-// codec into the base-table.json file - this has to be done
-// before requiring other modules as the int table will become read-only
-const codecName = 'dag-test'
-const codecNumber = 392091
-
-const table = require('multicodec/src/base-table')
-// @ts-ignore
-table.baseTable = {
- ...table.baseTable,
- [codecName]: codecNumber
-}
-
-// now require modules as usual
-const IPFSDaemon = require('ipfs-daemon')
-const multihashing = require('multihashing-async')
-const multihash = multihashing.multihash
-const multicodec = require('multicodec')
-const CID = require('cids')
-const ipfsHttpClient = require('ipfs-http-client')
-const uint8ArrayToString = require('uint8arrays/to-string')
-
-async function main () {
- // see https://github.com/ipld/interface-ipld-format for the interface definition
- const format = {
- codec: codecNumber,
- defaultHashAlg: multicodec.SHA2_256,
- util: {
- serialize (data) {
- return Buffer.from(JSON.stringify(data))
- },
- deserialize (buf) {
- return JSON.parse(uint8ArrayToString(buf))
- },
- async cid (buf) {
- const multihash = await multihashing(buf, format.defaultHashAlg)
-
- return new CID(1, format.codec, multihash)
- }
- },
- resolver: {
- resolve: (buf, path) => {
- return {
- value: format.util.deserialize(buf),
- remainderPath: path
- }
- }
- }
- }
-
- // start an IPFS Daemon
- const daemon = new IPFSDaemon({
- ipld: {
- formats: [
- format
- ]
- }
- })
- await daemon.start()
-
- // in another process:
- const client = ipfsHttpClient({
- url: `http://localhost:${daemon._httpApi._apiServers[0].info.port}`,
- ipld: {
- formats: [
- format
- ]
- }
- })
-
- const data = {
- hello: 'world'
- }
-
- const cid = await client.dag.put(data, {
- format: codecName,
- hashAlg: multihash.codes[format.defaultHashAlg]
- })
-
- console.info(`Put ${JSON.stringify(data)} = CID(${cid})`)
-
- const {
- value
- } = await client.dag.get(cid)
-
- console.info(`Get CID(${cid}) = ${JSON.stringify(value)}`)
-
- await daemon.stop()
-}
-
-main()
- .catch(err => {
- console.error(err)
- process.exit(1)
- })
- .then(() => {
- // https://github.com/libp2p/js-libp2p/issues/779
- process.exit(0)
- })
diff --git a/examples/custom-ipld-formats/in-process-node.js b/examples/custom-ipld-formats/in-process-node.js
deleted file mode 100644
index 3bfcee48e2..0000000000
--- a/examples/custom-ipld-formats/in-process-node.js
+++ /dev/null
@@ -1,77 +0,0 @@
-// ordinarily we'd open a PR against the multicodec module to get our
-// codec number added but since we're just testing we shim our new
-// codec into the base-table.json file - this has to be done
-// before requiring other modules as the int table will become read-only
-const codecName = 'dag-test'
-const codecNumber = 392091
-
-const table = require('multicodec/src/base-table')
-// @ts-ignore
-table.baseTable = {
- ...table.baseTable,
- [codecName]: codecNumber
-}
-
-// now require modules as usual
-const IPFS = require('ipfs-core')
-const multihashing = require('multihashing-async')
-const multicodec = require('multicodec')
-const CID = require('cids')
-
-async function main () {
- // see https://github.com/ipld/interface-ipld-format for the interface definition
- const format = {
- codec: codecNumber,
- defaultHashAlg: multicodec.SHA2_256,
- util: {
- serialize (data) {
- return Buffer.from(JSON.stringify(data))
- },
- deserialize (buf) {
- return JSON.parse(buf.toString('utf8'))
- },
- async cid (buf) {
- const multihash = await multihashing(buf, format.defaultHashAlg)
-
- return new CID(1, format.codec, multihash)
- }
- }
- }
-
- const node = await IPFS.create({
- ipld: {
- formats: [
- format
- ]
- }
- })
-
- const data = {
- hello: 'world'
- }
-
- const cid = await node.dag.put(data, {
- format: codecName,
- hashAlg: format.defaultHashAlg
- })
-
- console.info(`Put ${JSON.stringify(data)} = CID(${cid})`)
-
- const {
- value
- } = await node.dag.get(cid)
-
- console.info(`Get CID(${cid}) = ${JSON.stringify(value)}`)
-
- await node.stop()
-}
-
-main()
- .catch(err => {
- console.error(err)
- process.exit(1)
- })
- .then(() => {
- // https://github.com/libp2p/js-libp2p/issues/779
- process.exit(0)
- })
diff --git a/examples/custom-ipld-formats/package.json b/examples/custom-ipld-formats/package.json
deleted file mode 100644
index 733e9fd600..0000000000
--- a/examples/custom-ipld-formats/package.json
+++ /dev/null
@@ -1,22 +0,0 @@
-{
- "name": "skipped-example-custom-ipld-formats",
- "version": "1.0.0",
- "private": true,
- "scripts": {
- "test": "test-ipfs-example"
- },
- "license": "MIT",
- "devDependencies": {
- "execa": "^5.0.0",
- "test-ipfs-example": "^3.0.0"
- },
- "dependencies": {
- "cids": "^1.1.6",
- "ipfs-daemon": "^0.7.1",
- "ipfs-core": "^0.7.1",
- "ipfs-http-client": "^50.1.1",
- "multicodec": "^3.0.1",
- "multihashing-async": "^2.1.2",
- "uint8arrays": "^2.1.3"
- }
-}
diff --git a/examples/custom-ipld-formats/test.js b/examples/custom-ipld-formats/test.js
deleted file mode 100644
index 0ae52257f0..0000000000
--- a/examples/custom-ipld-formats/test.js
+++ /dev/null
@@ -1,28 +0,0 @@
-'use strict'
-
-const path = require('path')
-const {
- waitForOutput
-} = require('test-ipfs-example/utils')
-
-const testInProcessNode = async () => {
- await waitForOutput(
- 'Put {"hello":"world"} = CID(bagn7ofysecj2eolrvekol2wl6cuneukuzwrqtq6by4x3xgiu2r6gb46lnakyq)\n' +
- 'Get CID(bagn7ofysecj2eolrvekol2wl6cuneukuzwrqtq6by4x3xgiu2r6gb46lnakyq) = {"hello":"world"}', path.resolve(__dirname, 'in-process-node.js'))
-}
-
-const testDaemonNode = async () => {
- await waitForOutput(
- 'Put {"hello":"world"} = CID(bagn7ofysecj2eolrvekol2wl6cuneukuzwrqtq6by4x3xgiu2r6gb46lnakyq)\n' +
- 'Get CID(bagn7ofysecj2eolrvekol2wl6cuneukuzwrqtq6by4x3xgiu2r6gb46lnakyq) = {"hello":"world"}', path.resolve(__dirname, 'daemon-node.js'))
-}
-
-async function test () {
- console.info('Testing in-process node')
- await testInProcessNode()
-
- console.info('Testing daemon node')
- await testDaemonNode()
-}
-
-module.exports = test
diff --git a/examples/custom-libp2p/CHANGELOG.md b/examples/custom-libp2p/CHANGELOG.md
deleted file mode 100644
index d3ed19d5e6..0000000000
--- a/examples/custom-libp2p/CHANGELOG.md
+++ /dev/null
@@ -1,46 +0,0 @@
-# Change Log
-
-All notable changes to this project will be documented in this file.
-See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
-
-## [0.2.1](https://github.com/ipfs/js-ipfs/compare/example-custom-libp2p@0.2.0...example-custom-libp2p@0.2.1) (2020-04-08)
-
-**Note:** Version bump only for package example-custom-libp2p
-
-
-
-
-
-# 0.2.0 (2020-03-31)
-
-
-### Bug Fixes
-
-* **package:** update libp2p-kad-dht to version 0.15.0 ([#2049](https://github.com/ipfs/js-ipfs/issues/2049)) ([5905760](https://github.com/ipfs/js-ipfs/commit/59057609784ec6ca04625003e0e765f3141418ac))
-
-
-### Code Refactoring
-
-* return peer IDs as strings not CIDs ([#2729](https://github.com/ipfs/js-ipfs/issues/2729)) ([16d540c](https://github.com/ipfs/js-ipfs/commit/16d540c540f375061d83dafaf6c38d0b7c4a3d60))
-
-
-### Features
-
-* add libp2p factory config option with example ([#1470](https://github.com/ipfs/js-ipfs/issues/1470)) ([46222e1](https://github.com/ipfs/js-ipfs/commit/46222e1093b8919f572fd948612bd436a4376e31)), closes [#1463](https://github.com/ipfs/js-ipfs/issues/1463)
-* gossipsub as default pubsub ([#2298](https://github.com/ipfs/js-ipfs/issues/2298)) ([902e045](https://github.com/ipfs/js-ipfs/commit/902e04547e8cd0aaee994193ef664f662ff07683))
-* use libp2p auto dial ([#1983](https://github.com/ipfs/js-ipfs/issues/1983)) ([7f1fb26](https://github.com/ipfs/js-ipfs/commit/7f1fb263788dbd2c07766949fb9150319887f666))
-
-
-### BREAKING CHANGES
-
-* Where `PeerID`s were previously [CID](https://www.npmjs.com/package/cids)s, now they are Strings
-
-- `ipfs.bitswap.stat().peers[n]` is now a String (was a CID)
-- `ipfs.dht.findPeer().id` is now a String (was a CID)
-- `ipfs.dht.findProvs()[n].id` is now a String (was a CID)
-- `ipfs.dht.provide()[n].id` is now a String (was a CID)
-- `ipfs.dht.put()[n].id` is now a String (was a CID)
-- `ipfs.dht.query()[n].id` is now a String (was a CID)
-- `ipfs.id().id` is now a String (was a CID)
-- `ipfs.id().addresses[n]` are now [Multiaddr](https://www.npmjs.com/package/multiaddr)s (were Strings)
-* The default pubsub implementation has changed from floodsub to [gossipsub](https://github.com/ChainSafe/gossipsub-js). Additionally, to enable pubsub programmatically set `pubsub.enabled: true` instead of `EXPERIMENTAL.pubsub: true` or via the CLI pass `--enable-pubsub` instead of `--enable-pubsub-experiment` to `jsipfs daemon`.
diff --git a/examples/custom-libp2p/README.md b/examples/custom-libp2p/README.md
deleted file mode 100644
index 6fbcc79675..0000000000
--- a/examples/custom-libp2p/README.md
+++ /dev/null
@@ -1,28 +0,0 @@
-# Customizing your libp2p bundle
-
-This example shows you how to make full use of the ipfs configuration to create a libp2p bundle function. As IPFS applications become more complex, their needs for a custom libp2p bundle also grow. Instead of fighting with configuration options, you can use your own libp2p bundle function to get exactly what you need.
-
-## Before you start
-
-First clone this repo, install dependencies in the project root and build the project.
-
-```console
-$ git clone https://github.com/ipfs/js-ipfs.git
-$ cd js-ipfs
-$ npm install
-$ npm run build
-```
-
-## Running the example
-
-Running this example should result in metrics being logged out to the console every few seconds.
-
-```
-> npm start
-```
-
-## Play with the configuration!
-
-With the metrics for peers and bandwidth stats being logged out, try playing around with the nodes configuration to see what kind of metrics you can get. How many peers are you getting? What does your bandwidth look like?
-
-This is also a good opportunity to explore the various stats that ipfs offers! Not seeing a statistic you think would be useful? We'd love to have you [contribute](https://github.com/ipfs/community/blob/master/CONTRIBUTING_JS.md)!
diff --git a/examples/custom-libp2p/index.js b/examples/custom-libp2p/index.js
deleted file mode 100644
index aebc92bcbb..0000000000
--- a/examples/custom-libp2p/index.js
+++ /dev/null
@@ -1,135 +0,0 @@
-'use strict'
-
-const Libp2p = require('libp2p')
-const IPFS = require('ipfs')
-const TCP = require('libp2p-tcp')
-const MulticastDNS = require('libp2p-mdns')
-const Bootstrap = require('libp2p-bootstrap')
-const KadDHT = require('libp2p-kad-dht')
-const MPLEX = require('libp2p-mplex')
-const { NOISE } = require('libp2p-noise')
-
-/**
- * Options for the libp2p bundle
- * @typedef {Object} libp2pBundle~options
- * @property {PeerId} peerId - The PeerId of the IPFS node
- * @property {Object} config - The config of the IPFS node
- * @property {Object} options - The options given to the IPFS node
- */
-
-/**
- * This is the bundle we will use to create our fully customized libp2p bundle.
- *
- * @param {libp2pBundle~options} opts The options to use when generating the libp2p node
- * @returns {Libp2p} Our new libp2p node
- */
-const libp2pBundle = (opts) => {
- // Set convenience variables to clearly showcase some of the useful things that are available
- const peerId = opts.peerId
- const bootstrapList = opts.config.Bootstrap
-
- // Build and return our libp2p node
- // n.b. for full configuration options, see https://github.com/libp2p/js-libp2p/blob/master/doc/CONFIGURATION.md
- return Libp2p.create({
- peerId,
- addresses: {
- listen: ['/ip4/127.0.0.1/tcp/0']
- },
- // Lets limit the connection managers peers and have it check peer health less frequently
- connectionManager: {
- minPeers: 25,
- maxPeers: 100,
- pollInterval: 5000
- },
- modules: {
- transport: [
- TCP
- ],
- streamMuxer: [
- MPLEX
- ],
- connEncryption: [
- NOISE
- ],
- peerDiscovery: [
- MulticastDNS,
- Bootstrap
- ],
- dht: KadDHT
- },
- config: {
- peerDiscovery: {
- autoDial: true, // auto dial to peers we find when we have less peers than `connectionManager.minPeers`
- mdns: {
- interval: 10000,
- enabled: true
- },
- bootstrap: {
- interval: 30e3,
- enabled: true,
- list: bootstrapList
- }
- },
- // Turn on relay with hop active so we can connect to more peers
- relay: {
- enabled: true,
- hop: {
- enabled: true,
- active: true
- }
- },
- dht: {
- enabled: true,
- kBucketSize: 20,
- randomWalk: {
- enabled: true,
- interval: 10e3, // This is set low intentionally, so more peers are discovered quickly. Higher intervals are recommended
- timeout: 2e3 // End the query quickly since we're running so frequently
- }
- },
- pubsub: {
- enabled: true
- }
- },
- metrics: {
- enabled: true,
- computeThrottleMaxQueueSize: 1000, // How many messages a stat will queue before processing
- computeThrottleTimeout: 2000, // Time in milliseconds a stat will wait, after the last item was added, before processing
- movingAverageIntervals: [ // The moving averages that will be computed
- 60 * 1000, // 1 minute
- 5 * 60 * 1000, // 5 minutes
- 15 * 60 * 1000 // 15 minutes
- ],
- maxOldPeersRetention: 50 // How many disconnected peers we will retain stats for
- }
- })
-}
-
-async function main () {
- // Now that we have our custom libp2p bundle, let's start up the ipfs node!
- const node = await IPFS.create({
- libp2p: libp2pBundle
- })
-
- // Lets log out the number of peers we have every 2 seconds
- setInterval(async () => {
- try {
- const peers = await node.swarm.peers()
- console.log(`The node now has ${peers.length} peers.`)
- } catch (err) {
- console.log('An error occurred trying to check our peers:', err)
- }
- }, 2000)
-
- // Log out the bandwidth stats every 4 seconds so we can see how our configuration is doing
- setInterval(async () => {
- try {
- const stats = await node.stats.bw()
- console.log(`\nBandwidth Stats: ${JSON.stringify(stats, null, 2)}\n`)
- } catch (err) {
- console.log('An error occurred trying to check our stats:', err)
- }
- }, 4000)
-}
-
-main()
diff --git a/examples/custom-libp2p/package.json b/examples/custom-libp2p/package.json
deleted file mode 100644
index ba4a01c9cb..0000000000
--- a/examples/custom-libp2p/package.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "name": "example-custom-libp2p",
- "description": "Customizing your libp2p node",
- "version": "1.0.0",
- "main": "index.js",
- "private": true,
- "scripts": {
- "start": "node index.js",
- "test": "test-ipfs-example"
- },
- "license": "MIT",
- "dependencies": {
- "ipfs": "^0.55.3",
- "libp2p": "^0.31.6",
- "libp2p-bootstrap": "^0.12.3",
- "libp2p-kad-dht": "^0.22.0",
- "libp2p-mdns": "^0.16.0",
- "libp2p-mplex": "^0.10.2",
- "libp2p-noise": "^3.0.0",
- "libp2p-tcp": "^0.15.4"
- },
- "devDependencies": {
- "execa": "^5.0.0",
- "test-ipfs-example": "^3.0.0"
- }
-}
diff --git a/examples/custom-libp2p/test.js b/examples/custom-libp2p/test.js
deleted file mode 100644
index 3c8b099859..0000000000
--- a/examples/custom-libp2p/test.js
+++ /dev/null
@@ -1,68 +0,0 @@
-'use strict'
-
-const path = require('path')
-const execa = require('execa')
-const Libp2p = require('libp2p')
-const TCP = require('libp2p-tcp')
-const MPLEX = require('libp2p-mplex')
-const { NOISE } = require('libp2p-noise')
-const PeerId = require('peer-id')
-const uint8ArrayToString = require('uint8arrays/to-string')
-
-async function test () {
- let output = ''
-
- const proc = execa('node', [path.join(__dirname, 'index.js')], {
- cwd: path.resolve(__dirname),
- all: true
- })
- proc.all.on('data', async (data) => {
- process.stdout.write(data)
-
- output += uint8ArrayToString(data)
-
- if (output.includes('The node now has')) {
- // the node has started up, try to dial it
- const address = output.trim().match(/Swarm listening on (.*)\n/)[1]
-
- console.info('Dialling', address)
-
- const peerId = await PeerId.create()
- const libp2p = await Libp2p.create({
- peerId,
- addresses: {
- listen: ['/ip4/127.0.0.1/tcp/0']
- },
- modules: {
- transport: [
- TCP
- ],
- streamMuxer: [
- MPLEX
- ],
- connEncryption: [
- NOISE
- ]
- }
- })
- await libp2p.start()
- await libp2p.dial(address)
-
- console.info('Dialled', address)
-
- proc.kill()
-
- await libp2p.stop()
- }
- })
-
- await proc.catch(() => {
- // throw new Error('libp2p should have been killed')
- }, (err) => {
- if (err.exitSignal !== 'SIGTERM') {
- throw err
- }
- })
-}
-
-module.exports = test
diff --git a/examples/explore-ethereum-blockchain/CHANGELOG.md b/examples/explore-ethereum-blockchain/CHANGELOG.md
deleted file mode 100644
index 7b352c392b..0000000000
--- a/examples/explore-ethereum-blockchain/CHANGELOG.md
+++ /dev/null
@@ -1,16 +0,0 @@
-# Change Log
-
-All notable changes to this project will be documented in this file.
-See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
-
-## [1.0.2](https://github.com/ipfs/js-ipfs/compare/example-explore-ethereum-blockchain@1.0.1...example-explore-ethereum-blockchain@1.0.2) (2020-04-08)
-
-**Note:** Version bump only for package example-explore-ethereum-blockchain
-
-
-
-
-
-## 1.0.1 (2020-03-31)
-
-**Note:** Version bump only for package example-explore-ethereum-blockchain
diff --git a/examples/explore-ethereum-blockchain/README.md b/examples/explore-ethereum-blockchain/README.md
deleted file mode 100644
index e88a326217..0000000000
--- a/examples/explore-ethereum-blockchain/README.md
+++ /dev/null
@@ -1,58 +0,0 @@
-# Use IPFS to explore the Ethereum Blockchain
-
-> This is a pre-example to a full Ethereum to IPFS bridge. It shows how to resolve Ethereum hashes through the IPFS DAG get API.
-
-## Before you start
-
-First clone this repo, install dependencies in the project root and build the project.
-
-```console
-$ git clone https://github.com/ipfs/js-ipfs.git
-$ cd js-ipfs
-$ npm install
-$ npm run build
-```
-
-## Running the example
-
-Make sure to have the latest js-ipfs installed by doing
-
-```sh
-> npm install ipfs -g
-```
-
-If this is the first time you use js-ipfs, make sure to init your repo with
-
-```sh
-> jsipfs init
-```
-
-## Load ethereum chain data into ipfs
-
-We've some ethereum blocks available at [eth-stuffs](./eth-stuffs) folder, you can add them to ipfs by running:
-
-```sh
-> ./load-eth-stuffs.sh
-bagiacgzah24drzou2jlkixpblbgbg6nxfrasoklzttzoht5hixhxz3rlncyq
-bagiacgzanm7fiqpp7zcfehhd7apxpo4stdxx7wxn7eqrsgolj76t22dintgq
-bagiacgzau7z2cpinv6u3rnsa73ssc46cpongn7zh6ztjwo7hh7ao42cj4lha
-baglacgzaoc2jzhhxe6psrvq4ixlykpky2a23e3ltnhqpjrji3uyg6rnulxpq
-baglacgza2vwiqlrqgkz5jdpkzmkqznntozcnnoycn4swddtxi7njcjsmfpda
-baglacgza2vwiqlrqgkz5jdpkzmkqznntozcnnoycn4swddtxi7njcjsmfpda
-baglacgzar5mhc23wfjccxfkpf23kbufqqjsqg4t7btaocaraycwlxbaerq2q
-baglacgzasflr3hpssk5fpdheemyogi4df2zatql5z3pp7izau7d37ryijgca
-baglacgzae6kz4xubhfygknh7yqk2fbk4xztmnvwkwm36knjwukmyfepjveda
-baglacgzalfkeokwk7nvwenmr2k3e3f6khvch2bw54nhr25vjmjy2lshmx5mas
-```
-
-## Explore these blocks using the DAG API
-
-NOTE: Currently your js-ipfs daemon must NOT be running for the following examples to work.
-
-Some examples
-
-```sh
-> jsipfs dag get bagiacgzah24drzou2jlkixpblbgbg6nxfrasoklzttzoht5hixhxz3rlncyq/
-> jsipfs dag get bagiacgzah24drzou2jlkixpblbgbg6nxfrasoklzttzoht5hixhxz3rlncyq/parentHash
-...
-```
diff --git a/examples/explore-ethereum-blockchain/eth-stuffs/block_302515 b/examples/explore-ethereum-blockchain/eth-stuffs/block_302515
deleted file mode 100644
index 1e6b8fdc51..0000000000
Binary files a/examples/explore-ethereum-blockchain/eth-stuffs/block_302515 and /dev/null differ
diff --git a/examples/explore-ethereum-blockchain/eth-stuffs/block_302516 b/examples/explore-ethereum-blockchain/eth-stuffs/block_302516
deleted file mode 100644
index 9c4a667658..0000000000
Binary files a/examples/explore-ethereum-blockchain/eth-stuffs/block_302516 and /dev/null differ
diff --git a/examples/explore-ethereum-blockchain/eth-stuffs/block_302517 b/examples/explore-ethereum-blockchain/eth-stuffs/block_302517
deleted file mode 100644
index 3df292fd2d..0000000000
Binary files a/examples/explore-ethereum-blockchain/eth-stuffs/block_302517 and /dev/null differ
diff --git a/examples/explore-ethereum-blockchain/eth-stuffs/state_000017_302516 b/examples/explore-ethereum-blockchain/eth-stuffs/state_000017_302516
deleted file mode 100644
index d263f30e49..0000000000
Binary files a/examples/explore-ethereum-blockchain/eth-stuffs/state_000017_302516 and /dev/null differ
diff --git a/examples/explore-ethereum-blockchain/eth-stuffs/state_00001_302516 b/examples/explore-ethereum-blockchain/eth-stuffs/state_00001_302516
deleted file mode 100644
index 8379775afa..0000000000
--- a/examples/explore-ethereum-blockchain/eth-stuffs/state_00001_302516
+++ /dev/null
@@ -1 +0,0 @@
-Qp'(Eׅ=X5msi(0oE]߀k^<|aPްu.iKj-
\ No newline at end of file
diff --git a/examples/explore-ethereum-blockchain/eth-stuffs/state_0000_302516 b/examples/explore-ethereum-blockchain/eth-stuffs/state_0000_302516
deleted file mode 100644
index f3c5de915e..0000000000
Binary files a/examples/explore-ethereum-blockchain/eth-stuffs/state_0000_302516 and /dev/null differ
diff --git a/examples/explore-ethereum-blockchain/eth-stuffs/state_000_302516 b/examples/explore-ethereum-blockchain/eth-stuffs/state_000_302516
deleted file mode 100644
index c640587ef2..0000000000
Binary files a/examples/explore-ethereum-blockchain/eth-stuffs/state_000_302516 and /dev/null differ
diff --git a/examples/explore-ethereum-blockchain/eth-stuffs/state_00_302516 b/examples/explore-ethereum-blockchain/eth-stuffs/state_00_302516
deleted file mode 100644
index e03c01b8c9..0000000000
Binary files a/examples/explore-ethereum-blockchain/eth-stuffs/state_00_302516 and /dev/null differ
diff --git a/examples/explore-ethereum-blockchain/eth-stuffs/state_0_302516 b/examples/explore-ethereum-blockchain/eth-stuffs/state_0_302516
deleted file mode 100644
index 43b36d5b26..0000000000
Binary files a/examples/explore-ethereum-blockchain/eth-stuffs/state_0_302516 and /dev/null differ
diff --git a/examples/explore-ethereum-blockchain/eth-stuffs/state_r_302516 b/examples/explore-ethereum-blockchain/eth-stuffs/state_r_302516
deleted file mode 100644
index dfc5a46ccb..0000000000
--- a/examples/explore-ethereum-blockchain/eth-stuffs/state_r_302516
+++ /dev/null
@@ -1 +0,0 @@
-'^9pe4\fʳ756|̾0ۃ8oTȖ}ʊfCϠc?Bɣ-B!^N1nǺn
nR[~۠YQf̞Pa#f՝gR|X72aQ2ڱ$ťa,`F1?Qm3#{fM (wgޜwG2??xN@#(*(5h1N\#UಚrhUqT9|>"Iw4n3.RII~&V $Y3Oʦr^hޕ\i/kqu1UuZ*H97^4٪zϿشYr`;O'µNY1͗w'2ߠ2J?ZV1yF1r66#u7/.ktI2.N8Ue
k y|GVw;TkgI;+k'Hiq
\ No newline at end of file
diff --git a/examples/explore-ethereum-blockchain/load-eth-stuffs.sh b/examples/explore-ethereum-blockchain/load-eth-stuffs.sh
deleted file mode 100755
index 0c5c48074c..0000000000
--- a/examples/explore-ethereum-blockchain/load-eth-stuffs.sh
+++ /dev/null
@@ -1,13 +0,0 @@
-# Blocks
-jsipfs block put --format=eth-block --mhtype=keccak-256 eth-stuffs/block_302515
-jsipfs block put --format=eth-block --mhtype=keccak-256 eth-stuffs/block_302516
-jsipfs block put --format=eth-block --mhtype=keccak-256 eth-stuffs/block_302517
-
-# State Trie
-jsipfs block put --format=eth-state-trie --mhtype=keccak-256 eth-stuffs/state_000017_302516
-jsipfs block put --format=eth-state-trie --mhtype=keccak-256 eth-stuffs/state_00001_302516
-jsipfs block put --format=eth-state-trie --mhtype=keccak-256 eth-stuffs/state_00001_302516
-jsipfs block put --format=eth-state-trie --mhtype=keccak-256 eth-stuffs/state_000_302516
-jsipfs block put --format=eth-state-trie --mhtype=keccak-256 eth-stuffs/state_00_302516
-jsipfs block put --format=eth-state-trie --mhtype=keccak-256 eth-stuffs/state_0_302516
-jsipfs block put --format=eth-state-trie --mhtype=keccak-256 eth-stuffs/state_r_302516
diff --git a/examples/explore-ethereum-blockchain/package.json b/examples/explore-ethereum-blockchain/package.json
deleted file mode 100644
index 9d74c3760e..0000000000
--- a/examples/explore-ethereum-blockchain/package.json
+++ /dev/null
@@ -1,19 +0,0 @@
-{
- "name": "example-explore-ethereum-blockchain",
- "description": "Exploring the ethereum blockchain with ipld",
- "version": "1.0.2",
- "main": "index.js",
- "private": true,
- "scripts": {
- "test": "test-ipfs-example"
- },
- "keywords": [],
- "license": "MIT",
- "devDependencies": {
- "ipfs": "^0.55.3",
- "ipfs-http-client": "^50.1.1",
- "ipfsd-ctl": "^8.0.1",
- "ipld-ethereum": "^6.0.0",
- "test-ipfs-example": "^3.0.0"
- }
-}
diff --git a/examples/explore-ethereum-blockchain/test.js b/examples/explore-ethereum-blockchain/test.js
deleted file mode 100644
index c359779f59..0000000000
--- a/examples/explore-ethereum-blockchain/test.js
+++ /dev/null
@@ -1,55 +0,0 @@
-'use strict'
-
-const fs = require('fs-extra')
-const path = require('path')
-const { createFactory } = require('ipfsd-ctl')
-const df = createFactory({
- ipfsModule: require('ipfs'),
- ipfsHttpModule: require('ipfs-http-client')
-}, {
- js: {
- ipfsBin: require.resolve('ipfs/src/cli.js')
- }
-})
-
-async function runTest () {
- const ipfsd = await df.spawn({
- type: 'proc',
- test: true,
- ipfsOptions: {
- ipld: {
- formats: [
- ...Object.values(require('ipld-ethereum'))
- ]
- }
- }
- })
-
- const cids = []
-
- console.info('Importing eth-blocks')
- for (const file of await fs.readdir(path.join(__dirname, 'eth-stuffs'))) {
- const ethBlock = await fs.readFile(path.join(__dirname, 'eth-stuffs', file))
- const block = await ipfsd.api.block.put(ethBlock, {
- format: 'eth-block',
- mhtype: 'keccak-256'
- })
-
- cids.push(block.cid)
- }
-
- console.info('Reading eth-blocks back out')
- for (const cid of cids) {
- try {
- await ipfsd.api.dag.get(cid)
- console.error('block was ok', cid.toString())
- } catch (err) {
- console.error('block was invalid', cid.toString())
- console.error(err)
- }
- }
-
- await ipfsd.stop()
-}
-
-module.exports = runTest
diff --git a/examples/http-client-browser-pubsub/README.md b/examples/http-client-browser-pubsub/README.md
deleted file mode 100644
index cd221f77bd..0000000000
--- a/examples/http-client-browser-pubsub/README.md
+++ /dev/null
@@ -1,92 +0,0 @@
-# Pubsub in the browser
-
-> Use pubsub in the browser!
-
-This example is a demo web application that allows you to connect to an IPFS node, subscribe to a pubsub topic and send/receive messages. We'll start two IPFS nodes and two browsers and use the `ipfs-http-client` to instruct each node to listen to a pubsub topic and send/receive pubsub messages to/from each other. We're aiming for something like this:
-
-```
- +-----------+ +-----------+
- | +-------------------> |
- | js-ipfs | pubsub | go-ipfs |
- | <-------------------+ |
- +-----^-----+ +-----^-----+
- | |
- | HTTP API | HTTP API
- | |
-+-------------------+ +-------------------+
-+-------------------+ +-------------------+
-| | | |
-| | | |
-| Browser 1 | | Browser 2 |
-| | | |
-| | | |
-| | | |
-+-------------------+ +-------------------+
-```
-
-## 1. Get started
-
-With Node.js and git installed, clone the repo and install the project dependencies:
-
-```console
-$ git clone https://github.com/ipfs/js-ipfs.git
-$ cd js-ipfs/examples/http-client-browser-pubsub
-$ npm install
-```
-
-Start the example application:
-
-```sh
-npm start
-```
-
-You should see something similar to the following in your terminal and the web app should now be available if you navigate to http://127.0.0.1:8888 using your browser:
-
-```sh
-Starting up http-server, serving ./
-Available on:
- http://127.0.0.1:8888
-```
-
-## 2. Start two IPFS nodes
-
-To demonstrate pubsub we need two nodes running so pubsub messages can be passed between them.
-
-Right now the easiest way to do this is to install and start a `js-ipfs` and `go-ipfs` node. There are other ways to do this, see [this document on running multiple nodes](https://github.com/ipfs/js-ipfs/tree/master/examples/running-multiple-nodes) for details.
-
-### Install and start the JS IPFS node
-
-```sh
-npm install -g ipfs
-jsipfs init
-# Configure CORS to allow ipfs-http-client to access this IPFS node
-jsipfs config --json API.HTTPHeaders.Access-Control-Allow-Origin '["http://127.0.0.1:8888"]'
-# Start the IPFS node, enabling pubsub
-jsipfs daemon
-```
-
-### Install and start the Go IPFS node
-
-Head over to https://dist.ipfs.io/#go-ipfs and hit the "Download go-ipfs" button. Extract the archive and read the instructions to install.
-
-After installation:
-
-```sh
-ipfs init
-# Configure CORS to allow ipfs-http-client to access this IPFS node
-ipfs config --json API.HTTPHeaders.Access-Control-Allow-Origin '["http://127.0.0.1:8888"]'
-# Start the IPFS node, enabling pubsub
-ipfs daemon --enable-pubsub-experiment
-```
-
-## 3. Open two browsers and connect to each node
-
-Now, open up **two** browser windows. This could be two tabs in the same browser or two completely different browsers, it doesn't matter. Navigate to http://127.0.0.1:8888 in both.
-
-In the "API ADDR" field enter `/ip4/127.0.0.1/tcp/5001` in one browser and `/ip4/127.0.0.1/tcp/5002` in the other and hit the "Connect" button.
-
-This connects each browser to an IPFS node and now from the comfort of our browser we can instruct each node to listen to a pubsub topic and send/receive pubsub messages to each other.
-
-> N.B. Since our two IPFS nodes are running on the same network they should have already found each other by MDNS. So you probably won't need to use the "CONNECT TO PEER" field. If you find your pubsub messages aren't getting through, check the output from your `jsipfs daemon` command and find the first address listed in "Swarm listening on" - it'll look like `/ip4/127.0.0.1/tcp/4002/ipfs/Qm...`. Paste this address into the "CONNECT TO PEER" field for the browser that is connected to your go-ipfs node and hit connect.
-
-Finally, use the "SUBSCRIBE TO PUBSUB TOPIC" and "SEND MESSAGE" fields to do some pubsub-ing, you should see messages sent from one browser appear in the log of the other (provided they're both subscribed to the same topic).
diff --git a/examples/http-client-browser-pubsub/index.html b/examples/http-client-browser-pubsub/index.html
deleted file mode 100644
index 22a0d47659..0000000000
--- a/examples/http-client-browser-pubsub/index.html
+++ /dev/null
@@ -1,42 +0,0 @@
-
-
-
- Pubsub in the browser
-
-
-
-
-
-
-
-
- Pubsub
-
-
-
-
Connect to peer
-
-
Connect
-
-
-
Subscribe to pubsub topic
-
-
Subscribe
-
-
-
Send pubsub message
-
-
Send
-
-
-
-
-
diff --git a/examples/http-client-browser-pubsub/index.js b/examples/http-client-browser-pubsub/index.js
deleted file mode 100644
index 64867e7289..0000000000
--- a/examples/http-client-browser-pubsub/index.js
+++ /dev/null
@@ -1,124 +0,0 @@
-'use strict'
-
-const { create: IpfsHttpClient } = require('ipfs-http-client')
-const { sleep, Logger, onEnterPress, catchAndLog } = require('./util')
-const uint8ArrayToString = require('uint8arrays/to-string')
-
-async function main () {
- const apiUrlInput = document.getElementById('api-url')
- const nodeConnectBtn = document.getElementById('node-connect')
-
- const peerAddrInput = document.getElementById('peer-addr')
- const peerConnectBtn = document.getElementById('peer-connect')
-
- const topicInput = document.getElementById('topic')
- const subscribeBtn = document.getElementById('subscribe')
-
- const messageInput = document.getElementById('message')
- const sendBtn = document.getElementById('send')
-
- let log = Logger(document.getElementById('console'))
- let ipfs
- let topic
- let peerId
-
- async function reset () {
- if (ipfs && topic) {
- log(`Unsubscribing from topic ${topic}`)
- await ipfs.pubsub.unsubscribe(topic)
- }
- log = Logger(document.getElementById('console'))
- topicInput.value = ''
- topic = null
- peerId = null
- ipfs = null
- }
-
- async function nodeConnect (url) {
- await reset()
- log(`Connecting to ${url}`)
- ipfs = IpfsHttpClient(url)
- const { id, agentVersion } = await ipfs.id()
- peerId = id
- log(`Success! `)
- log(`Version ${agentVersion}`)
- log(`Peer ID ${id}`)
- }
-
- async function peerConnect (addr) {
- if (!addr) throw new Error('Missing peer multiaddr')
- if (!ipfs) throw new Error('Connect to a node first')
- log(`Connecting to peer ${addr}`)
- await ipfs.swarm.connect(addr)
- log(`Success! `)
- log('Listing swarm peers...')
- await sleep()
- const peers = await ipfs.swarm.peers()
- peers.forEach(peer => {
- const fullAddr = `${peer.addr}/ipfs/${peer.peer.toString()}`
- log(`${fullAddr} `)
- })
- log(`(${peers.length} peers total)`)
- }
-
- async function subscribe (nextTopic) {
- if (!nextTopic) throw new Error('Missing topic name')
- if (!ipfs) throw new Error('Connect to a node first')
-
- const lastTopic = topic
-
- if (topic) {
- topic = null
- log(`Unsubscribing from topic ${lastTopic}`)
- await ipfs.pubsub.unsubscribe(lastTopic)
- }
-
- log(`Subscribing to ${nextTopic}...`)
-
- await ipfs.pubsub.subscribe(nextTopic, msg => {
- const from = msg.from
- const seqno = uint8ArrayToString(msg.seqno, 'base16')
- if (from === peerId) return log(`Ignoring message ${seqno} from self`)
- log(`Message ${seqno} from ${from}:`)
- try {
- log(JSON.stringify(uint8ArrayToString(msg.data), null, 2))
- } catch (_) {
- log(uint8ArrayToString(msg.data, 'base16'))
- }
- })
-
- topic = nextTopic
- log(`Success! `)
- }
-
- async function send (msg) {
- if (!msg) throw new Error('Missing message')
- if (!topic) throw new Error('Subscribe to a topic first')
- if (!ipfs) throw new Error('Connect to a node first')
-
- log(`Sending message to ${topic}...`)
- await ipfs.pubsub.publish(topic, msg)
- log(`Success! `)
- }
-
- const onNodeConnectClick = catchAndLog(() => nodeConnect(apiUrlInput.value), log)
- apiUrlInput.addEventListener('keydown', onEnterPress(onNodeConnectClick))
- nodeConnectBtn.addEventListener('click', onNodeConnectClick)
-
- const onPeerConnectClick = catchAndLog(() => peerConnect(peerAddrInput.value), log)
- peerAddrInput.addEventListener('keydown', onEnterPress(onPeerConnectClick))
- peerConnectBtn.addEventListener('click', onPeerConnectClick)
-
- const onSubscribeClick = catchAndLog(() => subscribe(topicInput.value), log)
- topicInput.addEventListener('keydown', onEnterPress(onSubscribeClick))
- subscribeBtn.addEventListener('click', onSubscribeClick)
-
- const onSendClick = catchAndLog(async () => {
- await send(messageInput.value)
- messageInput.value = ''
- }, log)
- messageInput.addEventListener('keydown', onEnterPress(onSendClick))
- sendBtn.addEventListener('click', onSendClick)
-}
-
-main()
diff --git a/examples/http-client-browser-pubsub/package.json b/examples/http-client-browser-pubsub/package.json
deleted file mode 100644
index dead6629a4..0000000000
--- a/examples/http-client-browser-pubsub/package.json
+++ /dev/null
@@ -1,29 +0,0 @@
-{
- "name": "example-http-client-browser-pubsub-example",
- "version": "0.0.0",
- "description": "An example demonstrating pubsub in the browser",
- "private": true,
- "main": "dist/index.html",
- "scripts": {
- "clean": "rimraf ./dist ./.cache ./.parcel-cache",
- "build": "parcel build index.html --no-scope-hoist",
- "start": "parcel index.html -p 8888",
- "test": "test-ipfs-example"
- },
- "author": "Alan Shaw",
- "license": "MIT",
- "dependencies": {
- "ipfs-http-client": "^50.1.1"
- },
- "browserslist": [
- "last 2 versions and not dead and > 2%"
- ],
- "devDependencies": {
- "execa": "^5.0.0",
- "go-ipfs": "0.8.0",
- "ipfs": "^0.55.3",
- "ipfsd-ctl": "^8.0.1",
- "parcel": "2.0.0-beta.2",
- "test-ipfs-example": "^3.0.0"
- }
-}
diff --git a/examples/http-client-browser-pubsub/test.js b/examples/http-client-browser-pubsub/test.js
deleted file mode 100644
index be5558766d..0000000000
--- a/examples/http-client-browser-pubsub/test.js
+++ /dev/null
@@ -1,144 +0,0 @@
-'use strict'
-
-const path = require('path')
-const execa = require('execa')
-const { createFactory } = require('ipfsd-ctl')
-const df = createFactory({
- ipfsHttpModule: require('ipfs-http-client'),
-}, {
- js: {
- ipfsBin: require.resolve('ipfs/src/cli.js')
- },
- go: {
- ipfsBin: require('go-ipfs').path(),
- args: ['--enable-pubsub-experiment']
- }
-})
-const {
- startServer
-} = require('test-ipfs-example/utils')
-const pkg = require('./package.json')
-
-async function testUI (url, id, apiAddr, peerAddr, topic) {
- const proc = execa(require.resolve('test-ipfs-example/node_modules/.bin/nightwatch'), ['--config', require.resolve('test-ipfs-example/nightwatch.conf.js'), path.join(__dirname, 'test.js')], {
- cwd: path.resolve(__dirname, '../'),
- env: {
- ...process.env,
- CI: true,
- IPFS_EXAMPLE_TEST_URL: url,
- IPFS_API_ADDRESS: apiAddr,
- IPFS_ID: id,
- IPFS_PEER_ADDRESS: peerAddr,
- IPFS_TOPIC: topic
- },
- all: true
- })
- proc.all.on('data', (data) => {
- process.stdout.write(data)
- })
-
- await proc
-}
-
-async function runTest () {
- const app1 = await startServer(__dirname)
- const app2 = await startServer(__dirname)
- const js = await df.spawn({
- type: 'js',
- test: true,
- ipfsOptions: {
- config: {
- Addresses: {
- API: '/ip4/127.0.0.1/tcp/0'
- },
- API: {
- HTTPHeaders: {
- 'Access-Control-Allow-Origin': [
- app1.url
- ]
- }
- }
- }
- }
- })
- const go = await df.spawn({
- type: 'go',
- test: true,
- ipfsOptions: {
- config: {
- Addresses: {
- API: '/ip4/127.0.0.1/tcp/0'
- },
- API: {
- HTTPHeaders: {
- 'Access-Control-Allow-Origin': [
- app2.url
- ]
- }
- }
- }
- }
- })
-
- const topic = `topic-${Math.random()}`
-
- try {
- await Promise.all([
- testUI(app1.url, js.api.peerId.id, js.apiAddr, go.api.peerId.addresses[0].toString(), topic),
- testUI(app2.url, go.api.peerId.id, go.apiAddr, js.api.peerId.addresses[0].toString(), topic)
- ])
- } finally {
- await js.stop()
- await go.stop()
- await app1.stop()
- await app2.stop()
- }
-}
-
-module.exports = runTest
-
-module.exports[pkg.name] = function (browser) {
- browser
- .url(process.env.IPFS_EXAMPLE_TEST_URL)
- .waitForElementVisible('#api-url')
- .clearValue('#api-url')
- .setValue('#api-url', process.env.IPFS_API_ADDRESS)
- .pause(1000)
- .click('#node-connect')
-
- browser.expect.element('#console').text.to.contain(`Connecting to ${process.env.IPFS_API_ADDRESS}\nSuccess!`)
-
- // connect to peer
- browser
- .waitForElementVisible('#peer-addr')
- .clearValue('#peer-addr')
- .setValue('#peer-addr', process.env.IPFS_PEER_ADDRESS)
- .pause(1000)
- .click('#peer-connect')
-
- browser.expect.element('#console').text.to.contain(`Connecting to peer ${process.env.IPFS_PEER_ADDRESS}\nSuccess!`)
-
- // subscribe to topic
- browser
- .waitForElementVisible('#topic')
- .clearValue('#topic')
- .setValue('#topic', process.env.IPFS_TOPIC)
- .pause(1000)
- .click('#subscribe')
-
- browser.expect.element('#console').text.to.contain(`Subscribing to ${process.env.IPFS_TOPIC}...\nSuccess!`)
-
- // send a message
- browser
- .waitForElementVisible('#message')
- .clearValue('#message')
- .setValue('#message', 'hello')
- .pause(1000)
- .click('#send')
-
- const remotePeerId = process.env.IPFS_PEER_ADDRESS.split('/').pop()
-
- browser.expect.element('#console').text.to.contain(`from ${remotePeerId}:\n"hello"`)
-
- browser.end()
-}
diff --git a/examples/http-client-browser-pubsub/util.js b/examples/http-client-browser-pubsub/util.js
deleted file mode 100644
index e6aada61f8..0000000000
--- a/examples/http-client-browser-pubsub/util.js
+++ /dev/null
@@ -1,31 +0,0 @@
-exports.sleep = (ms = 1000) => new Promise(resolve => setTimeout(resolve, ms))
-
-exports.Logger = outEl => {
- outEl.innerHTML = ''
- return message => {
- const container = document.createElement('div')
- container.innerHTML = message
- outEl.appendChild(container)
- outEl.scrollTop = outEl.scrollHeight
- }
-}
-
-exports.onEnterPress = fn => {
- return e => {
- if (event.which == 13 || event.keyCode == 13) {
- e.preventDefault()
- fn()
- }
- }
-}
-
-exports.catchAndLog = (fn, log) => {
- return async (...args) => {
- try {
- await fn(...args)
- } catch (err) {
- console.error(err)
- log(`${err.message} `)
- }
- }
-}
diff --git a/examples/http-client-bundle-webpack/.eslintrc b/examples/http-client-bundle-webpack/.eslintrc
deleted file mode 100644
index 676feeeb16..0000000000
--- a/examples/http-client-bundle-webpack/.eslintrc
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "extends": "standard",
- "rules": {
- "react/jsx-uses-react": 2,
- "react/jsx-uses-vars": 2,
- "react/react-in-jsx-scope": 2
- },
- "plugins": [
- "react"
- ]
-}
diff --git a/examples/http-client-bundle-webpack/1.png b/examples/http-client-bundle-webpack/1.png
deleted file mode 100644
index 37a1103658..0000000000
Binary files a/examples/http-client-bundle-webpack/1.png and /dev/null differ
diff --git a/examples/http-client-bundle-webpack/README.md b/examples/http-client-bundle-webpack/README.md
deleted file mode 100644
index e59a198995..0000000000
--- a/examples/http-client-bundle-webpack/README.md
+++ /dev/null
@@ -1,35 +0,0 @@
-# Bundle js-ipfs-http-client with Webpack!
-
-> In this example, you will find a boilerplate you can use to guide yourself into bundling js-ipfs-http-client with webpack, so that you can use it in your own web app!
-
-## Setup
-
-As for any js-ipfs-http-client example, **you need a running IPFS daemon**, you learn how to do that here:
-
-- [Spawn a go-ipfs daemon](https://ipfs.io/docs/getting-started/)
-- [Spawn a js-ipfs daemon](https://github.com/ipfs/js-ipfs#usage)
-
-**Note:** If you load your app from a different domain than the one the daemon is running (most probably), you will need to set up CORS, see https://github.com/ipfs/js-ipfs-http-client#cors to learn how to do that.
-
-A quick (and dirty) way to get it done is:
-
-```bash
-> ipfs config --json API.HTTPHeaders.Access-Control-Allow-Origin "[\"*\"]"
-> ipfs config --json API.HTTPHeaders.Access-Control-Allow-Credentials "[\"true\"]"
-```
-
-## Run this example
-
-Once the daemon is on, run the following commands within this folder:
-
-```bash
-> npm install
-> npm start
-```
-
-Now open your browser at `http://localhost:8888`
-
-You should see the following:
-
-
-
diff --git a/examples/http-client-bundle-webpack/index.html b/examples/http-client-bundle-webpack/index.html
deleted file mode 100644
index c4d9c49025..0000000000
--- a/examples/http-client-bundle-webpack/index.html
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
- Sample App
-
-
-
-
-
-
-
diff --git a/examples/http-client-bundle-webpack/package.json b/examples/http-client-bundle-webpack/package.json
deleted file mode 100644
index 121186f0e1..0000000000
--- a/examples/http-client-bundle-webpack/package.json
+++ /dev/null
@@ -1,38 +0,0 @@
-{
- "name": "example-http-client-bundle-webpack",
- "version": "1.0.0",
- "description": "Bundle js-ipfs-http-client with Webpack",
- "private": true,
- "scripts": {
- "clean": "rimraf ./dist",
- "build": "webpack",
- "start": "node server.js",
- "test": "test-ipfs-example"
- },
- "author": "Victor Bjelkholm ",
- "license": "MIT",
- "keywords": [],
- "dependencies": {
- "ipfs-http-client": "^50.1.1",
- "react": "^17.0.2",
- "react-dom": "^17.0.2"
- },
- "devDependencies": {
- "@babel/core": "^7.13.14",
- "@babel/preset-env": "^7.13.12",
- "@babel/preset-react": "^7.13.13",
- "babel-loader": "^8.2.2",
- "copy-webpack-plugin": "^8.1.0",
- "execa": "^5.0.0",
- "ipfs": "^0.55.3",
- "ipfsd-ctl": "^8.0.1",
- "react-hot-loader": "^4.12.21",
- "rimraf": "^3.0.2",
- "test-ipfs-example": "^3.0.0",
- "webpack": "^5.28.0",
- "webpack-cli": "^4.5.0"
- },
- "browserslist": [
- "last 2 versions and not dead and > 2%"
- ]
-}
diff --git a/examples/http-client-bundle-webpack/server.js b/examples/http-client-bundle-webpack/server.js
deleted file mode 100644
index cb8c56980b..0000000000
--- a/examples/http-client-bundle-webpack/server.js
+++ /dev/null
@@ -1,18 +0,0 @@
-'use strict'
-
-const webpack = require('webpack')
-const WebpackDevServer = require('webpack-dev-server')
-const config = require('./webpack.config')
-
-const wds = new WebpackDevServer(webpack(config), {
- hot: true,
- historyApiFallback: true
-})
-
-wds.listen(8888, 'localhost', (err) => {
- if (err) {
- throw err
- }
-
- console.log('Listening at localhost:8888')
-})
diff --git a/examples/http-client-bundle-webpack/src/App.js b/examples/http-client-bundle-webpack/src/App.js
deleted file mode 100644
index e1bdffe99c..0000000000
--- a/examples/http-client-bundle-webpack/src/App.js
+++ /dev/null
@@ -1,85 +0,0 @@
-'use strict'
-const React = require('react')
-const { create: ipfsClient } = require('ipfs-http-client')
-const stringToUse = 'hello world from webpacked IPFS'
-
-class App extends React.Component {
- constructor (props) {
- super(props)
- this.state = {
- addr: null,
- id: null,
- version: null,
- protocol_version: null,
- added_file_hash: null,
- added_file_contents: null
- }
-
- this.connect = this.connect.bind(this)
- this.multiaddr = React.createRef()
- }
-
- async connect () {
- const ipfs = ipfsClient(this.multiaddr.current.value)
- const id = await ipfs.id()
-
- this.setState({
- id: id.id,
- version: id.agentVersion,
- protocol_version: id.protocolVersion
- })
-
- const file = await ipfs.add(stringToUse)
- const hash = file.cid
- this.setState({ added_file_hash: hash.toString() })
-
- const source = ipfs.cat(hash)
- let contents = ''
- const decoder = new TextDecoder('utf-8')
-
- for await (const chunk of source) {
- contents += decoder.decode(chunk, {
- stream: true
- })
- }
-
- contents += decoder.decode()
-
- this.setState({ added_file_contents: contents })
- }
-
- render () {
- if (this.state.id) {
- return (
-
-
-
Your ID is {this.state.id}
-
Your IPFS version is {this.state.version}
-
Your IPFS protocol version is {this.state.protocol_version}
-
-
- Added a file!
- {this.state.added_file_hash}
-
-
- Contents of this file:
- {this.state.added_file_contents}
-
-
-
- )
- }
-
- return (
-
-
-
-
- )
-
- }
-}
-module.exports = App
diff --git a/examples/http-client-bundle-webpack/src/index.js b/examples/http-client-bundle-webpack/src/index.js
deleted file mode 100644
index 6d9d7badf5..0000000000
--- a/examples/http-client-bundle-webpack/src/index.js
+++ /dev/null
@@ -1,6 +0,0 @@
-'use strict'
-const React = require('react')
-const ReactDOM = require('react-dom')
-const App = require('./App')
-
-ReactDOM.render( , document.getElementById('root'))
diff --git a/examples/http-client-bundle-webpack/test.js b/examples/http-client-bundle-webpack/test.js
deleted file mode 100644
index 7a435b6140..0000000000
--- a/examples/http-client-bundle-webpack/test.js
+++ /dev/null
@@ -1,83 +0,0 @@
-'use strict'
-
-const path = require('path')
-const execa = require('execa')
-const { createFactory } = require('ipfsd-ctl')
-const df = createFactory({
- ipfsHttpModule: require('ipfs-http-client'),
- ipfsBin: require.resolve('ipfs/src/cli.js')
-})
-const {
- startServer
-} = require('test-ipfs-example/utils')
-const pkg = require('./package.json')
-
-async function testUI (url, api, id) {
- const proc = execa(require.resolve('test-ipfs-example/node_modules/.bin/nightwatch'), ['--config', require.resolve('test-ipfs-example/nightwatch.conf.js'), path.join(__dirname, 'test.js')], {
- cwd: path.resolve(__dirname, '../'),
- env: {
- ...process.env,
- CI: true,
- IPFS_EXAMPLE_TEST_URL: url,
- IPFS_API_MULTIADDR: api,
- IPFS_ID: id
- },
- all: true
- })
- proc.all.on('data', (data) => {
- process.stdout.write(data)
- })
-
- await proc
-}
-
-async function runTest () {
- const app = await startServer(__dirname)
- const daemon = await df.spawn({
- type: 'js',
- test: true,
- ipfsOptions: {
- config: {
- Addresses: {
- API: '/ip4/127.0.0.1/tcp/0'
- },
- API: {
- HTTPHeaders: {
- 'Access-Control-Allow-Origin': [
- app.url
- ]
- }
- }
- }
- }
- })
-
- try {
- await testUI(app.url, daemon.apiAddr, daemon.api.peerId.id)
- } finally {
- await daemon.stop()
- await app.stop()
- }
-}
-
-module.exports = runTest
-
-module.exports[pkg.name] = function (browser) {
- browser
- .url(process.env.IPFS_EXAMPLE_TEST_URL)
- .waitForElementVisible('#connect-input')
- .clearValue('#connect-input')
- .setValue('#connect-input', process.env.IPFS_API_MULTIADDR)
- .pause(1000)
- .click('#connect-submit')
-
- browser
- .waitForElementVisible('#info-header')
-
- browser.expect.element('#info-header').text.to.contain('Everything is working!')
- browser.expect.element('#root').text.to.contain('Added a file!')
- browser.expect.element('#root').text.to.contain(process.env.IPFS_ID)
- browser.expect.element('#root').text.to.contain('hello world from webpacked IPFS')
-
- browser.end()
-}
diff --git a/examples/http-client-bundle-webpack/webpack.config.js b/examples/http-client-bundle-webpack/webpack.config.js
deleted file mode 100644
index 28d5394954..0000000000
--- a/examples/http-client-bundle-webpack/webpack.config.js
+++ /dev/null
@@ -1,49 +0,0 @@
-
-const path = require('path')
-const webpack = require('webpack')
-const CopyWebpackPlugin = require('copy-webpack-plugin')
-
-module.exports = {
- mode: 'production',
- devtool: 'eval',
- entry: [
- 'webpack-dev-server/client?http://localhost:3000',
- 'webpack/hot/only-dev-server',
- './src/index'
- ],
- output: {
- path: path.join(__dirname, 'dist'),
- filename: 'static/bundle.js',
- publicPath: '/static/'
- },
- plugins: [
- new webpack.HotModuleReplacementPlugin(),
- new CopyWebpackPlugin({
- patterns: [{
- from: 'index.html'
- }]
- })
- ],
- module: {
- rules: [
- {
- test: /\.js$/,
- exclude: /node_modules/,
- use: {
- loader: 'babel-loader',
- options: {
- presets: [
- ['@babel/preset-env',
- {
- targets: {
- esmodules: true
- }
- }],
- '@babel/preset-react'
- ]
- }
- }
- }
- ]
- }
-}
diff --git a/examples/http-client-name-api/README.md b/examples/http-client-name-api/README.md
deleted file mode 100644
index bfb7fe5107..0000000000
--- a/examples/http-client-name-api/README.md
+++ /dev/null
@@ -1,21 +0,0 @@
-# JS IPFS API - Example Browser - Name
-
-## Setup
-
-```sh
-npm install -g ipfs
-jsipfs init
-# Configure CORS to allow ipfs-http-client to access this IPFS node
-jsipfs config --json API.HTTPHeaders.Access-Control-Allow-Origin '["http://127.0.0.1:8888"]'
-# Start the IPFS node, enabling pubsub
-jsipfs daemon
-```
-
-Then in this folder run
-
-```bash
-> npm install
-> npm start
-```
-
-and open your browser at `http://127.0.0.1:8888`.
diff --git a/examples/http-client-name-api/index.html b/examples/http-client-name-api/index.html
deleted file mode 100644
index 31cf17d0f5..0000000000
--- a/examples/http-client-name-api/index.html
+++ /dev/null
@@ -1,69 +0,0 @@
-
-
-
-
- JS IPFS API name example
-
-
-
-
- js-ipfs-http-client
- name.publish()
and name.resolve()
-
- Ready to connect
-
-
-
-
-
-
-
- Publish an existing file or directory from IPFS.
-
- Publish
-
-
-
-
-
-
-
- Resolve an IPNS name
-
- Resolve
-
-
-
-
-
-
diff --git a/examples/http-client-name-api/index.js b/examples/http-client-name-api/index.js
deleted file mode 100644
index abe828b492..0000000000
--- a/examples/http-client-name-api/index.js
+++ /dev/null
@@ -1,133 +0,0 @@
-/* eslint-disable no-console */
-'use strict'
-
-const { create: ipfsHttp } = require('ipfs-http-client')
-let ipfs
-
-const DOM = {
- status: document.getElementById('status'),
- buttons: document.getElementsByTagName('button'),
- connect: document.getElementById('connect-to-http-api'),
- publishNew: document.getElementById('publish-text'),
- publishPath: document.getElementById('publish-path'),
- resolveName: document.getElementById('resolve-name'),
- publishResultsDiv: document.querySelector('.results--publish'),
- resolveResultsDiv: document.querySelector('.results--resolve'),
- publishResult: document.getElementById('publish-result'),
- resolveResult: document.getElementById('resolve-result'),
- publishGatewayLink: document.getElementById('publish-gateway-link'),
- resolveGatewayLink: document.getElementById('resolve-gateway-link')
-}
-
-const COLORS = {
- active: 'blue',
- success: 'green',
- error: 'red'
-}
-
-const IPFS_DOMAIN = 'https://ipfs.io'
-
-const showStatus = (text, bg) => {
- DOM.status.innerText = text
- DOM.status.style.background = bg
-}
-
-const enableForms = () => {
- for (const btn of DOM.buttons) {
- btn.disabled = false
- }
-}
-
-const connect = async (e) => {
- e.preventDefault()
-
- const input = e.target.elements.text.value.trim()
- showStatus(`Connecting to ${input}`, COLORS.active)
-
- ipfs = ipfsHttp(input)
- ipfs.id()
- .then(res => {
- showStatus(`Daemon active\nID: ${res.id}`, COLORS.success)
- enableForms()
- })
- .catch(err => {
- showStatus('Failed to connect to daemon', COLORS.error)
- console.error(err)
- })
-}
-
-// Adds a new file to IPFS and publish it
-const addAndPublish = async (e) => {
- e.preventDefault()
-
- const input = e.target.elements.text
- const buffer = new TextEncoder().encode(input.value)
-
- showStatus('Adding to IPFS...', COLORS.active)
- try {
- const file = await ipfs.add(buffer)
- showStatus('Success!', COLORS.success)
-
- publish(file.path)
-
- input.value = ''
- } catch (err) {
- showStatus('Failed to add the data', COLORS.error)
- console.error(err)
- }
-}
-
-// Publishes an IPFS file or directory under your node's identity
-const publish = (path) => {
- showStatus('Publishing...', COLORS.active)
- DOM.publishResultsDiv.classList.add('hidden')
-
- ipfs.name.publish(path)
- .then(res => {
- const name = res.name
- showStatus('Success!', COLORS.success)
- DOM.publishResultsDiv.classList.remove('hidden')
- DOM.publishResult.innerText = `/ipns/${name}`
- DOM.publishGatewayLink.href = `${IPFS_DOMAIN}/ipns/${name}`
- })
- .catch(err => {
- showStatus(`Error publishing ${path}`, COLORS.error)
- console.error(err)
- })
-}
-
-// Resolves an IPNS name
-const resolve = async (name) => {
- showStatus('Resolving...', COLORS.active)
- DOM.resolveResultsDiv.classList.add('hidden')
- try {
- for await (const path of ipfs.name.resolve(name)) {
- showStatus('Success!', COLORS.success)
- DOM.resolveResultsDiv.classList.remove('hidden')
- DOM.resolveResult.innerText = path
- DOM.resolveGatewayLink.href = `${IPFS_DOMAIN}${path}`
- }
- } catch (err) {
- showStatus(`Error resolving ${name}`, COLORS.error)
- console.error(err)
- }
-}
-
-// Event listeners
-DOM.connect.onsubmit = connect
-
-DOM.publishNew.onsubmit = addAndPublish
-
-DOM.publishPath.onsubmit = (e) => {
- e.preventDefault()
- const input = e.target.elements.path
- publish(input.value)
- input.value = ''
-}
-
-DOM.resolveName.onsubmit = (e) => {
- e.preventDefault()
- const input = e.target.elements.name
- resolve(input.value)
- input.value = ''
-}
diff --git a/examples/http-client-name-api/package.json b/examples/http-client-name-api/package.json
deleted file mode 100644
index 34976b4aca..0000000000
--- a/examples/http-client-name-api/package.json
+++ /dev/null
@@ -1,29 +0,0 @@
-{
- "name": "example-http-client-name-api",
- "version": "1.0.0",
- "description": "",
- "main": "dist/index.html",
- "private": true,
- "scripts": {
- "clean": "rimraf ./dist ./.cache ./.parcel-cache",
- "build": "parcel build index.html --no-scope-hoist",
- "start": "parcel index.html -p 8888",
- "test": "test-ipfs-example"
- },
- "author": "Tara Vancil ",
- "license": "MIT",
- "dependencies": {
- "ipfs-http-client": "^50.1.1"
- },
- "devDependencies": {
- "execa": "^5.0.0",
- "go-ipfs": "0.8.0",
- "ipfsd-ctl": "^8.0.1",
- "parcel": "2.0.0-beta.2",
- "rimraf": "^3.0.2",
- "test-ipfs-example": "^3.0.0"
- },
- "browserslist": [
- "last 2 versions and not dead and > 2%"
- ]
-}
diff --git a/examples/http-client-name-api/test.js b/examples/http-client-name-api/test.js
deleted file mode 100644
index cb64d105de..0000000000
--- a/examples/http-client-name-api/test.js
+++ /dev/null
@@ -1,112 +0,0 @@
-'use strict'
-
-const path = require('path')
-const execa = require('execa')
-const { createFactory } = require('ipfsd-ctl')
-const df = createFactory({
- ipfsHttpModule: require('ipfs-http-client'),
- ipfsBin: require('go-ipfs').path(),
- args: ['--enable-pubsub-experiment']
-})
-const {
- startServer
-} = require('test-ipfs-example/utils')
-const pkg = require('./package.json')
-
-async function testUI (url, api, id) {
- const proc = execa(require.resolve('test-ipfs-example/node_modules/.bin/nightwatch'), ['--config', require.resolve('test-ipfs-example/nightwatch.conf.js'), path.join(__dirname, 'test.js')], {
- cwd: path.resolve(__dirname, '../'),
- env: {
- ...process.env,
- CI: true,
- IPFS_EXAMPLE_TEST_URL: url,
- IPFS_API_MULTIADDR: api,
- IPFS_ID: id
- },
- all: true
- })
- proc.all.on('data', (data) => {
- process.stdout.write(data)
- })
-
- await proc
-}
-
-async function runTest () {
- const app = await startServer(__dirname)
- const daemon = await df.spawn({
- type: 'go',
- test: true,
- ipfsOptions: {
- config: {
- Addresses: {
- API: '/ip4/127.0.0.1/tcp/0'
- },
- API: {
- HTTPHeaders: {
- 'Access-Control-Allow-Origin': [
- app.url
- ]
- }
- }
- }
- }
- })
-
- // Cannot publish ipns names without peers
- const daemon2 = await df.spawn({
- type: 'go',
- test: true
- })
- await daemon.api.swarm.connect(await daemon2.api.peerId.addresses[0])
-
- try {
- await testUI(app.url, daemon.apiAddr, daemon.api.peerId.id)
- } finally {
- await daemon.stop()
- await daemon2.stop()
- await app.stop()
- }
-}
-
-module.exports = runTest
-
-module.exports[pkg.name] = function (browser) {
- browser
- .url(process.env.IPFS_EXAMPLE_TEST_URL)
- .waitForElementVisible('#connect-input')
- .clearValue('#connect-input')
- .setValue('#connect-input', process.env.IPFS_API_MULTIADDR)
- .pause(1000)
- .click('#connect-submit')
-
- browser.expect.element('#status').text.to.contain(`Daemon active\nID: ${process.env.IPFS_ID}`)
-
- const content = 'hello world'
-
- // publish a name
- browser
- .waitForElementVisible('#add-file-input')
- .clearValue('#add-file-input')
- .setValue('#add-file-input', content)
- .pause(1000)
- .click('#add-file-submit')
-
- browser.expect.element('#publish-result').text.to.contain('/ipns/k')
-
- // resolve a name
- browser.getText('#publish-result', (result) => {
- const ipnsName = result.value.trim()
-
- browser
- .waitForElementVisible('#resolve-name-input')
- .clearValue('#resolve-name-input')
- .setValue('#resolve-name-input', ipnsName)
- .pause(1000)
- .click('#resolve-name-submit')
-
- browser.expect.element('#resolve-result').text.to.contain('/ipfs/Qm')
- })
-
- browser.end()
-}
diff --git a/examples/ipfs-101/1.js b/examples/ipfs-101/1.js
deleted file mode 100644
index 1850df48ab..0000000000
--- a/examples/ipfs-101/1.js
+++ /dev/null
@@ -1,27 +0,0 @@
-'use strict'
-
-const IPFS = require('ipfs')
-const all = require('it-all')
-const uint8ArrayConcat = require('uint8arrays/concat')
-const uint8ArrayFromString = require('uint8arrays/from-string')
-const uint8ArrayToString = require('uint8arrays/to-string')
-
-async function main () {
- const node = await IPFS.create()
- const version = await node.version()
-
- console.log('Version:', version.version)
-
- const file = await node.add({
- path: 'hello.txt',
- content: uint8ArrayFromString('Hello World 101')
- })
-
- console.log('Added file:', file.path, file.cid.toString())
-
- const data = uint8ArrayConcat(await all(node.cat(file.cid)))
-
- console.log('Added file contents:', uint8ArrayToString(data))
-}
-
-main()
diff --git a/examples/ipfs-101/CHANGELOG.md b/examples/ipfs-101/CHANGELOG.md
deleted file mode 100644
index 6a97928815..0000000000
--- a/examples/ipfs-101/CHANGELOG.md
+++ /dev/null
@@ -1,43 +0,0 @@
-# Change Log
-
-All notable changes to this project will be documented in this file.
-See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
-
-## [0.1.1](https://github.com/ipfs/js-ipfs/compare/example-ipfs-101@0.1.0...example-ipfs-101@0.1.1) (2020-04-08)
-
-**Note:** Version bump only for package example-ipfs-101
-
-
-
-
-
-# 0.1.0 (2020-03-31)
-
-
-### Bug Fixes
-
-* examples after files API refactor ([#1740](https://github.com/ipfs/js-ipfs/issues/1740)) ([34ec036](https://github.com/ipfs/js-ipfs/commit/34ec036b0df9563a014c1348f0a056c1f98aadad))
-
-
-### Code Refactoring
-
-* return peer IDs as strings not CIDs ([#2729](https://github.com/ipfs/js-ipfs/issues/2729)) ([16d540c](https://github.com/ipfs/js-ipfs/commit/16d540c540f375061d83dafaf6c38d0b7c4a3d60))
-
-
-### Features
-
-* implementing the new streaming interfaces ([#1086](https://github.com/ipfs/js-ipfs/issues/1086)) ([2c4b8b3](https://github.com/ipfs/js-ipfs/commit/2c4b8b325b94d4506b87441f06c5d29bb6f37f72))
-
-
-### BREAKING CHANGES
-
-* Where `PeerID`s were previously [CID](https://www.npmjs.com/package/cids)s, now they are Strings
-
-- `ipfs.bitswap.stat().peers[n]` is now a String (was a CID)
-- `ipfs.dht.findPeer().id` is now a String (was a CID)
-- `ipfs.dht.findProvs()[n].id` is now a String (was a CID)
-- `ipfs.dht.provide()[n].id` is now a String (was a CID)
-- `ipfs.dht.put()[n].id` is now a String (was a CID)
-- `ipfs.dht.query()[n].id` is now a String (was a CID)
-- `ipfs.id().id` is now a String (was a CID)
-- `ipfs.id().addresses[n]` are now [Multiaddr](https://www.npmjs.com/package/multiaddr)s (were Strings)
diff --git a/examples/ipfs-101/README.md b/examples/ipfs-101/README.md
deleted file mode 100644
index 12893c2743..0000000000
--- a/examples/ipfs-101/README.md
+++ /dev/null
@@ -1,125 +0,0 @@
-# IPFS 101, spawn a node and add a file to the IPFS network
-
-> This tutorial is the sibling of the [go-ipfs "Using go-ipfs as a library" tutorial](https://github.com/ipfs/go-ipfs/tree/master/docs/examples/go-ipfs-as-a-library).
-
-In this tutorial, we go through spawning an IPFS node, adding a file and cat'ing the file multihash locally and through the gateway.
-
-You can find a complete version of this tutorial in [1.js](./1.js). For this tutorial, you need to install `ipfs` using `npm install ipfs`.
-
-## Before you start
-
-First clone this repo, install dependencies in the project root and build the project.
-
-```console
-$ git clone https://github.com/ipfs/js-ipfs.git
-$ cd js-ipfs
-$ npm install
-$ npm run build
-```
-
-## Running the example
-
-Creating an IPFS instance can be done in one line, after requiring the module, you simply have to:
-
-```js
-const IPFS = require('ipfs')
-
-async function main () {
- const node = await IPFS.create()
- // ...
-}
-
-main()
-```
-
-As a test, we are going to check the version of the node.
-
-```js
-const IPFS = require('ipfs')
-
-async function main () {
- const node = await IPFS.create()
- const version = await node.version()
-
- console.log('Version:', version.version)
- // ...
-}
-
-main()
-```
-
-(If you prefer not to use `async`/`await`, you can instead use `.then()` as you would with any promise, or pass an [error-first callback](https://nodejs.org/api/errors.html#errors_error_first_callbacks), e.g. `node.version((err, version) => { ... })`)
-
-Running the code above gets you:
-
-```bash
-> node 1.js
-Version: 0.31.2
-```
-
-Now let's make it more interesting and add a file to IPFS using `node.add`. A file consists of a path and content.
-
-You can learn about the IPFS File API at [interface-ipfs-core](https://github.com/ipfs/js-ipfs/blob/master/docs/core-api/FILES.md).
-
-```js
-const IPFS = require('ipfs')
-
-async function main () {
- const node = await IPFS.create()
- const version = await node.version()
-
- console.log('Version:', version.version)
-
- const fileAdded = await node.add({
- path: 'hello.txt',
- content: 'Hello World 101'
- })
-
- console.log('Added file:', fileAdded.path, fileAdded.cid)
- // ...
-}
-
-main()
-```
-
-You can now go to an IPFS Gateway and load the printed hash from a gateway. Go ahead and try it!
-
-```bash
-> node 1.js
-Version: 0.31.2
-
-Added file: hello.txt QmXgZAUWd8yo4tvjBETqzUy3wLx5YRzuDwUQnBwRGrAmAo
-# Copy that hash and load it on the gateway, here is a prefiled url:
-# https://ipfs.io/ipfs/QmXgZAUWd8yo4tvjBETqzUy3wLx5YRzuDwUQnBwRGrAmAo
-```
-
-The last step of this tutorial is retrieving the file back using the `cat` 😺 call.
-
-```js
-const IPFS = require('ipfs')
-
-async function main () {
- const node = await IPFS.create()
- const version = await node.version()
-
- console.log('Version:', version.version)
-
- const fileAdded = await node.add({
- path: 'hello.txt',
- content: 'Hello World 101'
- })
-
- console.log('Added file:', fileAdded.path, fileAdded.cid)
-
- const chunks = []
- for await (const chunk of node.cat(fileAdded.cid)) {
- chunks.push(chunk)
- }
-
- console.log('Added file contents:', uint8ArrayConcat(chunks).toString())
-}
-
-main()
-```
-
-That's it! You just added and retrieved a file from the Distributed Web!
diff --git a/examples/ipfs-101/hello.txt b/examples/ipfs-101/hello.txt
deleted file mode 100644
index 0c6da6cc39..0000000000
--- a/examples/ipfs-101/hello.txt
+++ /dev/null
@@ -1 +0,0 @@
-Hello, how are you today? Welcome to the Distributed Web!
diff --git a/examples/ipfs-101/package.json b/examples/ipfs-101/package.json
deleted file mode 100644
index b16c4a52d9..0000000000
--- a/examples/ipfs-101/package.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "name": "example-ipfs-101",
- "description": "this package.json needs to exist because of new npm config https://github.com/ipfs/js-ipfs/issues/977#issuecomment-326741092",
- "version": "1.0.0",
- "main": "1.js",
- "private": true,
- "scripts": {
- "test": "test-ipfs-example"
- },
- "author": "David Dias ",
- "license": "MIT",
- "dependencies": {
- "ipfs": "^0.55.3",
- "it-all": "^1.0.4",
- "uint8arrays": "^2.1.3"
- },
- "devDependencies": {
- "test-ipfs-example": "^3.0.0"
- }
-}
diff --git a/examples/ipfs-101/test.js b/examples/ipfs-101/test.js
deleted file mode 100644
index 6c0c70f1bc..0000000000
--- a/examples/ipfs-101/test.js
+++ /dev/null
@@ -1,12 +0,0 @@
-'use strict'
-
-const path = require('path')
-const {
- waitForOutput
-} = require('test-ipfs-example/utils')
-
-async function runTest () {
- await waitForOutput('Added file contents: Hello World 101', path.resolve(__dirname, '1.js'))
-}
-
-module.exports = runTest
diff --git a/examples/ipfs-client-add-files/README.md b/examples/ipfs-client-add-files/README.md
deleted file mode 100644
index 1fbd3bb0fd..0000000000
--- a/examples/ipfs-client-add-files/README.md
+++ /dev/null
@@ -1,21 +0,0 @@
-# JS IPFS API - Example Browser - Name
-
-## Setup
-
-```sh
-npm install -g ipfs
-jsipfs init
-# Configure CORS to allow ipfs-http-client to access this IPFS node
-jsipfs config --json API.HTTPHeaders.Access-Control-Allow-Origin '["http://127.0.0.1:8888"]'
-# Start the IPFS node
-jsipfs daemon
-```
-
-Then in this folder run
-
-```bash
-> npm install
-> npm start
-```
-
-and open your browser at `http://127.0.0.1:8888`.
diff --git a/examples/ipfs-client-add-files/index.html b/examples/ipfs-client-add-files/index.html
deleted file mode 100644
index 619eb6b919..0000000000
--- a/examples/ipfs-client-add-files/index.html
+++ /dev/null
@@ -1,36 +0,0 @@
-
-
-
-
- JS IPFS Client example
-
-
-
-
- ipfs-client
-
- Enter IPFS API details
-
- GRPC:
-
-
-
- HTTP:
-
-
- Connect
-
-
-
-
-
-
-
diff --git a/examples/ipfs-client-add-files/index.js b/examples/ipfs-client-add-files/index.js
deleted file mode 100644
index ef924a9905..0000000000
--- a/examples/ipfs-client-add-files/index.js
+++ /dev/null
@@ -1,81 +0,0 @@
-/* eslint-disable no-console */
-'use strict'
-
-const { create: ipfsClient } = require('ipfs-client')
-let ipfs
-
-const COLORS = {
- active: 'blue',
- success: 'green',
- error: 'red'
-}
-
-const showStatus = (text, bg) => {
- console.info(text)
-
- const log = document.getElementById('output')
-
- if (!log) {
- return
- }
-
- const line = document.createElement('p')
- line.innerText = text
- line.style.color = bg
-
- log.appendChild(line)
-}
-
-async function * streamFiles () {
- for (let i = 0; i < 100; i++) {
- await new Promise((resolve) => {
- setTimeout(() => resolve(), 100)
- })
-
- showStatus(`Sending /file-${i}.txt`, COLORS.active)
-
- yield {
- path: `/file-${i}.txt`,
- content: `file ${i}`
- }
- }
-}
-
-async function main (grpcApi, httpApi) {
- showStatus(`Connecting to ${grpcApi} using ${httpApi} as fallback`, COLORS.active)
-
- ipfs = ipfsClient({
- grpc: grpcApi,
- http: httpApi
- })
-
- const id = await ipfs.id()
- showStatus(`Daemon active\nID: ${id.id}`, COLORS.success)
-
- for await (const file of ipfs.addAll(streamFiles(), {
- wrapWithDirectory: true,
- // this is just to show the interleaving of uploads and progress events
- // otherwise we'd have to upload 50 files before we see any response from
- // the server. do not specify this so low in production as you'll have
- // greatly degraded import performance
- fileImportConcurrency: 1,
- progress: (bytes, file) => {
- showStatus(`File progress ${file} ${bytes}`, COLORS.active)
- }
- })) {
- showStatus(`Added file: ${file.path} ${file.cid}`, COLORS.success)
- }
-
- showStatus('Finished!', COLORS.success)
-}
-
-// Event listeners
-document.getElementById('connect-submit').onclick = (e) => {
- e.preventDefault()
-
- main(document.getElementById('grpc-input').value, document.getElementById('http-input').value)
- .catch(err => {
- showStatus(err.message, COLORS.error)
- console.error(err)
- })
-}
diff --git a/examples/ipfs-client-add-files/package.json b/examples/ipfs-client-add-files/package.json
deleted file mode 100644
index 618d9782cb..0000000000
--- a/examples/ipfs-client-add-files/package.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "name": "example-ipfs-client-add-files",
- "version": "1.0.0",
- "description": "",
- "main": "dist/index.html",
- "private": true,
- "scripts": {
- "clean": "rimraf ./dist ./.cache ./.parcel-cache",
- "build": "parcel build index.html --no-scope-hoist",
- "start": "parcel index.html -p 8888",
- "test": "test-ipfs-example"
- },
- "dependencies": {
- "ipfs-client": "^0.4.2"
- },
- "devDependencies": {
- "execa": "^5.0.0",
- "ipfs": "^0.55.3",
- "ipfsd-ctl": "^8.0.1",
- "parcel": "2.0.0-beta.2",
- "rimraf": "^3.0.2",
- "test-ipfs-example": "^3.0.0"
- },
- "browserslist": [
- "last 2 versions and not dead and > 2%"
- ]
-}
diff --git a/examples/ipfs-client-add-files/test.js b/examples/ipfs-client-add-files/test.js
deleted file mode 100644
index 84f6892d9d..0000000000
--- a/examples/ipfs-client-add-files/test.js
+++ /dev/null
@@ -1,82 +0,0 @@
-'use strict'
-
-const path = require('path')
-const execa = require('execa')
-const { createFactory } = require('ipfsd-ctl')
-const df = createFactory({
- ipfsClientModule: require('ipfs-client'),
- ipfsBin: require.resolve('ipfs/src/cli.js')
-})
-const {
- startServer
-} = require('test-ipfs-example/utils')
-const pkg = require('./package.json')
-
-async function testUI (url, http, grpc, id) {
- const proc = execa(require.resolve('test-ipfs-example/node_modules/.bin/nightwatch'), ['--config', require.resolve('test-ipfs-example/nightwatch.conf.js'), path.join(__dirname, 'test.js')], {
- cwd: path.resolve(__dirname, '../'),
- env: {
- ...process.env,
- CI: true,
- IPFS_EXAMPLE_TEST_URL: url,
- IPFS_GRPC_API_MULTIADDR: grpc,
- IPFS_HTTP_API_MULTIADDR: http
- },
- all: true
- })
- proc.all.on('data', (data) => {
- process.stdout.write(data)
- })
-
- await proc
-}
-
-async function runTest () {
- const app = await startServer(__dirname)
- const daemon = await df.spawn({
- type: 'js',
- test: true,
- ipfsOptions: {
- config: {
- Addresses: {
- API: '/ip4/127.0.0.1/tcp/0',
- RPC: '/ip4/127.0.0.1/tcp/0'
- },
- API: {
- HTTPHeaders: {
- 'Access-Control-Allow-Origin': [
- app.url
- ]
- }
- }
- }
- }
- })
-
- try {
- await testUI(app.url, daemon.apiAddr, daemon.grpcAddr, daemon.api.peerId.id)
- } finally {
- await daemon.stop()
- await app.stop()
- }
-}
-
-module.exports = runTest
-
-module.exports[pkg.name] = function (browser) {
- browser
- .url(process.env.IPFS_EXAMPLE_TEST_URL)
- .waitForElementVisible('#grpc-input')
- .clearValue('#grpc-input')
- .setValue('#grpc-input', process.env.IPFS_GRPC_API_MULTIADDR)
- .pause(1000)
- .waitForElementVisible('#http-input')
- .clearValue('#http-input')
- .setValue('#http-input', process.env.IPFS_HTTP_API_MULTIADDR)
- .pause(1000)
- .click('#connect-submit')
-
- browser.expect.element('#output').text.to.contain('Added file: file-0.txt QmUDLiEJwL3vUhhXNXDF2RrCnVkSB2LemWYffpCCPcQCeU')
-
- browser.end()
-}
diff --git a/examples/protoschool.md b/examples/protoschool.md
deleted file mode 100644
index 5f5f7becaf..0000000000
--- a/examples/protoschool.md
+++ /dev/null
@@ -1,8 +0,0 @@
-# IPFS Tutorials at ProtoSchool
-
-Explore [ProtoSchool's IPFS tutorials](https://proto.school/#/tutorials?course=ipfs) for interactive js-ipfs coding challenges, deep dives into DWeb concepts like content addressing, and more.
-
-
-
-
-
diff --git a/examples/run-in-electron/CHANGELOG.md b/examples/run-in-electron/CHANGELOG.md
deleted file mode 100644
index 766cf515df..0000000000
--- a/examples/run-in-electron/CHANGELOG.md
+++ /dev/null
@@ -1,24 +0,0 @@
-# Change Log
-
-All notable changes to this project will be documented in this file.
-See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
-
-## [0.0.2](https://github.com/ipfs/js-ipfs/compare/example-js-ipfs-in-electron@0.0.1...example-js-ipfs-in-electron@0.0.2) (2020-04-08)
-
-**Note:** Version bump only for package example-js-ipfs-in-electron
-
-
-
-
-
-## 0.0.1 (2020-03-31)
-
-
-### Bug Fixes
-
-* upgrade electron examples ([#2104](https://github.com/ipfs/js-ipfs/issues/2104)) ([67e1b59](https://github.com/ipfs/js-ipfs/commit/67e1b5986c1feecc9ff160c6a6962038a727ef3e))
-
-
-### Features
-
-* get Ping to work properly ([27d5a57](https://github.com/ipfs/js-ipfs/commit/27d5a575c58a445bba4ba1f86d22ccc76623ef64))
diff --git a/examples/run-in-electron/README.md b/examples/run-in-electron/README.md
deleted file mode 100755
index 0b312a9c0f..0000000000
--- a/examples/run-in-electron/README.md
+++ /dev/null
@@ -1,22 +0,0 @@
-# js-ipfs in Electron
-
-> This example is heavily inspired by [electron-quick-start](https://github.com/electron/electron-quick-start).
-
-## Before you start
-
-First clone this repo, install dependencies in the project root and build the project.
-
-```console
-$ git clone https://github.com/ipfs/js-ipfs.git
-$ cd js-ipfs
-$ npm install
-$ npm run build
-```
-
-## Running the example
-
-To try it by yourself, do:
-
-```
-> npm start
-```
diff --git a/examples/run-in-electron/index.html b/examples/run-in-electron/index.html
deleted file mode 100755
index b08d91d023..0000000000
--- a/examples/run-in-electron/index.html
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-
-
- IPFS
-
-
- IPFS in electron!
- now check your console
-
-
-
diff --git a/examples/run-in-electron/main.js b/examples/run-in-electron/main.js
deleted file mode 100755
index ffba58d45d..0000000000
--- a/examples/run-in-electron/main.js
+++ /dev/null
@@ -1,51 +0,0 @@
-'use strict'
-
-const { app, BrowserWindow } = require('electron')
-const IPFS = require('ipfs')
-
-let mainWindow
-
-function createWindow () {
- mainWindow = new BrowserWindow({
- width: 800,
- height: 600,
- webPreferences: {
- nodeIntegration: true
- }
- })
-
- // and load the index.html of the app.
- mainWindow.loadFile('index.html')
-
- // Open the DevTools.
- mainWindow.webContents.openDevTools()
-
- // Emitted when the window is closed.
- mainWindow.on('closed', () => {
- mainWindow = null
- })
-}
-
-app.on('ready', async () => {
- createWindow()
-
- try {
- const node = await IPFS.create()
- const id = await node.id()
- console.log(id)
- } catch (err) {
- console.error(err)
- }
-})
-
-// Quit when all windows are closed.
-app.on('window-all-closed', () => {
- if (process.platform !== 'darwin') { app.quit() }
-})
-
-app.on('activate', () => {
- if (mainWindow === null) { createWindow() }
-})
-
-// In this file you can include the rest of your app's specific main process
-// code. You can also put them in separate files and require them here.
diff --git a/examples/run-in-electron/package.json b/examples/run-in-electron/package.json
deleted file mode 100644
index 4ce293269d..0000000000
--- a/examples/run-in-electron/package.json
+++ /dev/null
@@ -1,29 +0,0 @@
-{
- "name": "example-js-ipfs-in-electron",
- "description": "A minimal Electron application with js-ipfs",
- "version": "1.0.0",
- "main": "main.js",
- "private": true,
- "scripts": {
- "start": "electron .",
- "test": "test-ipfs-example"
- },
- "keywords": [
- "Electron",
- "IPFS",
- "Example"
- ],
- "author": "David Dias ",
- "license": "MIT",
- "devDependencies": {
- "electron": "^12.0.2",
- "electron-rebuild": "^2.3.4",
- "ipfs": "^0.55.3",
- "test-ipfs-example": "^3.0.0"
- },
- "greenkeeper": {
- "ignore": [
- "electron"
- ]
- }
-}
diff --git a/examples/run-in-electron/renderer.js b/examples/run-in-electron/renderer.js
deleted file mode 100755
index 901d75ec51..0000000000
--- a/examples/run-in-electron/renderer.js
+++ /dev/null
@@ -1,3 +0,0 @@
-// This file is required by the index.html file and will
-// be executed in the renderer process for that window.
-// All of the Node.js APIs are available in this process.
diff --git a/examples/run-in-electron/test.js b/examples/run-in-electron/test.js
deleted file mode 100644
index 8583d5febe..0000000000
--- a/examples/run-in-electron/test.js
+++ /dev/null
@@ -1,13 +0,0 @@
-'use strict'
-
-const {
- waitForOutput
-} = require('test-ipfs-example/utils')
-
-async function runTest () {
- await waitForOutput('protocolVersion', 'npm', ['run', 'start'], {
- cwd: __dirname
- })
-}
-
-module.exports = runTest
diff --git a/examples/running-multiple-nodes/CHANGELOG.md b/examples/running-multiple-nodes/CHANGELOG.md
deleted file mode 100644
index 4a7a9c9836..0000000000
--- a/examples/running-multiple-nodes/CHANGELOG.md
+++ /dev/null
@@ -1,47 +0,0 @@
-# Change Log
-
-All notable changes to this project will be documented in this file.
-See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
-
-## [2.0.1](https://github.com/ipfs/js-ipfs/compare/example-running-multiple-nodes@2.0.0...example-running-multiple-nodes@2.0.1) (2020-04-08)
-
-**Note:** Version bump only for package example-running-multiple-nodes
-
-
-
-
-
-# 2.0.0 (2020-03-31)
-
-
-### chore
-
-* move mfs and multipart files into core ([#2811](https://github.com/ipfs/js-ipfs/issues/2811)) ([82b9e08](https://github.com/ipfs/js-ipfs/commit/82b9e085330e6c6290e6f3dd29678247984ffdce))
-
-
-### Code Refactoring
-
-* return peer IDs as strings not CIDs ([#2729](https://github.com/ipfs/js-ipfs/issues/2729)) ([16d540c](https://github.com/ipfs/js-ipfs/commit/16d540c540f375061d83dafaf6c38d0b7c4a3d60))
-
-
-### Features
-
-* support UnixFSv1.5 metadata ([#2621](https://github.com/ipfs/js-ipfs/issues/2621)) ([acbda68](https://github.com/ipfs/js-ipfs/commit/acbda68305b14df08bdd826693f30d4d37493fea)), closes [ipfs/js-datastore-pubsub#20](https://github.com/ipfs/js-datastore-pubsub/issues/20)
-
-
-### BREAKING CHANGES
-
-* When the path passed to `ipfs.files.stat(path)` was a hamt sharded dir, the resovled
-value returned by js-ipfs previously had a `type` property of with a value of
-`'hamt-sharded-directory'`. To bring it in line with go-ipfs this value is now
-`'directory'`.
-* Where `PeerID`s were previously [CID](https://www.npmjs.com/package/cids)s, now they are Strings
-
-- `ipfs.bitswap.stat().peers[n]` is now a String (was a CID)
-- `ipfs.dht.findPeer().id` is now a String (was a CID)
-- `ipfs.dht.findProvs()[n].id` is now a String (was a CID)
-- `ipfs.dht.provide()[n].id` is now a String (was a CID)
-- `ipfs.dht.put()[n].id` is now a String (was a CID)
-- `ipfs.dht.query()[n].id` is now a String (was a CID)
-- `ipfs.id().id` is now a String (was a CID)
-- `ipfs.id().addresses[n]` are now [Multiaddr](https://www.npmjs.com/package/multiaddr)s (were Strings)
diff --git a/examples/running-multiple-nodes/README.md b/examples/running-multiple-nodes/README.md
deleted file mode 100644
index fe8bc45057..0000000000
--- a/examples/running-multiple-nodes/README.md
+++ /dev/null
@@ -1,80 +0,0 @@
-# Running multiple JS IPFS nodes
-
-This example takes you through the process needed to run 2 or more JS IPFS nodes on the same computer.
-
-## Before you start
-
-First clone this repo, install dependencies in the project root and build the project.
-
-```console
-$ git clone https://github.com/ipfs/js-ipfs.git
-$ cd js-ipfs
-$ npm install
-$ npm run build
-```
-
-## Running the example
-
-### Via the CLI
-
-Firstly, you'll want to use the `IPFS_PATH` env variable to get a different repo for each instance. Initialise a new IPFS repo like this:
-
-```sh
-# IPFS_PATH by default is `~/.jsipfs`.
-# The following instructs JS IPFS to use the path `~/.jsipfs2` instead:
-IPFS_PATH=~/.jsipfs2 jsipfs init
-
-# Repeat this for as many nodes as you want to run...
-```
-
-Secondly, you'll need them to bind to different ports because otherwise bad things happen.
-
-With the CLI, after you've run `ipfs init` you can either edit the config file at `~/.jsipfs/config` (replacing `~/.jsipfs` with the repo path you specified above) or use the config command to update the config e.g. `ipfs config Addresses.API /ip4/0.0.0.0/tcp/4012`. Then start the node with `ipfs daemon`:
-
-```sh
-# edit the address ports
-vi ~/.jsipfs2/config
-
-# OR
-
-IPFS_PATH=~/.jsipfs2 jsipfs config Addresses.API /ip4/127.0.0.1/tcp/5012
-
-# Repeat this for as many nodes as you want to run...
-```
-
-```sh
-# ...and then start the daemon
-IPFS_PATH=~/.jsipfs2 jsipfs daemon
-
-# Repeat this for as many nodes as you want to run...
-```
-
-### Programmatically
-
-Firstly, you'll want to pass the [`repo`](https://github.com/ipfs/js-ipfs#optionsrepo) option to the constructor to get a different repo for each instance:
-
-```js
-// The repo path by default is `os.homedir() + '/.jsipfs'`.
-await IPFS.create({ repo: os.homedir() + '/.jsipfs2' })
-```
-
-Secondly, you'll need them to bind to different ports because otherwise bad things happen.
-
-To do this, simply pass the different ports to the [`config`](https://github.com/ipfs/js-ipfs#optionsconfig) constructor option. All together:
-
-```js
-await IPFS.create({
- repo: os.homedir() + '/.jsipfs2',
- config: {
- Addresses: {
- Swarm: [
- '/ip4/0.0.0.0/tcp/4012',
- '/ip4/127.0.0.1/tcp/4013/ws'
- ],
- API: '/ip4/127.0.0.1/tcp/5012',
- Gateway: '/ip4/127.0.0.1/tcp/9191',
- RPC: '/ip4/127.0.0.1/tcp/4839'
- }
- }
-})
-```
diff --git a/examples/running-multiple-nodes/package.json b/examples/running-multiple-nodes/package.json
deleted file mode 100644
index 0ec83788b6..0000000000
--- a/examples/running-multiple-nodes/package.json
+++ /dev/null
@@ -1,18 +0,0 @@
-{
- "name": "example-running-multiple-nodes",
- "description": "How to run multiple IPFS nodes at the same time",
- "version": "2.0.1",
- "main": "index.js",
- "private": true,
- "scripts": {
- "test": "test-ipfs-example"
- },
- "keywords": [],
- "license": "MIT",
- "devDependencies": {
- "test-ipfs-example": "^3.0.0"
- },
- "dependencies": {
- "ipfs": "^0.55.3"
- }
-}
diff --git a/examples/running-multiple-nodes/test.js b/examples/running-multiple-nodes/test.js
deleted file mode 100644
index ff661328fa..0000000000
--- a/examples/running-multiple-nodes/test.js
+++ /dev/null
@@ -1,76 +0,0 @@
-'use strict'
-
-const IPFS = require('ipfs')
-
-const execa = require('execa')
-const os = require('os')
-const path = require('path')
-const { nanoid } = require('nanoid')
-const {
- waitForOutput
-} = require('test-ipfs-example/utils')
-
-async function testCli () {
- await Promise.all([
- startCliNode(),
- startCliNode()
- ])
-}
-
-async function startCliNode () {
- const repoDir = path.join(os.tmpdir(), `repo-${nanoid()}`)
- const opts = {
- env: {
- ...process.env,
- IPFS_PATH: repoDir
- }
- }
- const ipfs = require.resolve('ipfs/src/cli.js')
-
- await execa(ipfs, ['init'], opts)
- await execa(ipfs, ['config', 'Addresses.Swarm', '--json', JSON.stringify([`/ip4/0.0.0.0/tcp/0`, `/ip4/127.0.0.1/tcp/0/ws`])], opts)
- await execa(ipfs, ['config', 'Addresses.API', `/ip4/127.0.0.1/tcp/0`], opts)
- await execa(ipfs, ['config', 'Addresses.Gateway', `/ip4/127.0.0.1/tcp/0`], opts)
- await execa(ipfs, ['config', 'Addresses.RPC', `/ip4/127.0.0.1/tcp/0`], opts)
-
- return waitForOutput('Daemon is ready', ipfs, ['daemon'], opts)
-}
-
-async function testProgramatically () {
- await Promise.all([
- startProgramaticNode(),
- startProgramaticNode()
- ])
-}
-
-async function startProgramaticNode () {
- const repoDir = path.join(os.tmpdir(), `repo-${nanoid()}`)
- const node = await IPFS.create({
- repo: repoDir,
- config: {
- Addresses: {
- Swarm: [
- `/ip4/0.0.0.0/tcp/0`,
- `/ip4/127.0.0.1/tcp/0/ws`
- ],
- API: `/ip4/127.0.0.1/tcp/0`,
- Gateway: `/ip4/127.0.0.1/tcp/0`,
- RPC: `/ip4/127.0.0.1/tcp/0`
- },
- Bootstrap: []
- }
- })
-
- console.info('Stopping programmatic node')
- await node.stop()
-}
-
-async function runTest () {
- console.info('Testing CLI recipe')
- await testCli()
- console.info('Testing Programmatic recipe')
- await testProgramatically()
- console.info('Done!')
-}
-
-module.exports = runTest
diff --git a/examples/test-ipfs-example/CHANGELOG.md b/examples/test-ipfs-example/CHANGELOG.md
deleted file mode 100644
index 4a4056e0c3..0000000000
--- a/examples/test-ipfs-example/CHANGELOG.md
+++ /dev/null
@@ -1,75 +0,0 @@
-# Change Log
-
-All notable changes to this project will be documented in this file.
-See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
-
-# [3.0.0](https://github.com/ipfs/js-ipfs/compare/test-ipfs-example@2.1.0...test-ipfs-example@3.0.0) (2021-02-01)
-
-
-### chore
-
-* update deps ([#3514](https://github.com/ipfs/js-ipfs/issues/3514)) ([061d77c](https://github.com/ipfs/js-ipfs/commit/061d77cc03f40af5a3bc3590481e1e5836e7f0d8))
-
-
-### BREAKING CHANGES
-
-* ipfs-repo upgrade requires repo migration to v10
-
-
-
-
-
-# [2.1.0](https://github.com/ipfs/js-ipfs/compare/test-ipfs-example@2.0.3...test-ipfs-example@2.1.0) (2020-10-28)
-
-
-### Features
-
-* ipns publish example ([#3207](https://github.com/ipfs/js-ipfs/issues/3207)) ([91faec6](https://github.com/ipfs/js-ipfs/commit/91faec6e3d89b0d9883b8d7815c276d44048e739))
-* store pins in datastore instead of a DAG ([#2771](https://github.com/ipfs/js-ipfs/issues/2771)) ([64b7fe4](https://github.com/ipfs/js-ipfs/commit/64b7fe41738cbe96d5a9075f0c01156c6f889c40))
-
-
-
-
-
-## [2.0.3](https://github.com/ipfs/js-ipfs/compare/test-ipfs-example@2.0.2...test-ipfs-example@2.0.3) (2020-05-29)
-
-**Note:** Version bump only for package test-ipfs-example
-
-
-
-
-
-## [2.0.2](https://github.com/ipfs/js-ipfs/compare/test-ipfs-example@2.0.1...test-ipfs-example@2.0.2) (2020-05-18)
-
-
-### Bug Fixes
-
-* fixes browser script tag example ([#3034](https://github.com/ipfs/js-ipfs/issues/3034)) ([ee8b769](https://github.com/ipfs/js-ipfs/commit/ee8b769b96f7e3c8414bbf85853ab4e21e8fd11c)), closes [#3027](https://github.com/ipfs/js-ipfs/issues/3027)
-
-
-
-
-
-## [2.0.1](https://github.com/ipfs/js-ipfs/compare/test-ipfs-example@2.0.0...test-ipfs-example@2.0.1) (2020-04-08)
-
-**Note:** Version bump only for package test-ipfs-example
-
-
-
-
-
-# 2.0.0 (2020-03-31)
-
-
-### chore
-
-* update dep version and ignore interop test for raw leaves ([#2747](https://github.com/ipfs/js-ipfs/issues/2747)) ([6376cec](https://github.com/ipfs/js-ipfs/commit/6376cec2b4beccef4751c498088f600ec7788118))
-
-
-### BREAKING CHANGES
-
-* Files that fit into one block imported with either `--cid-version=1`
-or `--raw-leaves=true` previously returned a CID that resolved to
-a raw node (e.g. a buffer). Returned CIDs now resolve to a `dag-pb`
-node that contains a UnixFS entry. This is to allow setting metadata
-on small files with CIDv1.
diff --git a/examples/test-ipfs-example/README.md b/examples/test-ipfs-example/README.md
deleted file mode 100644
index 62c998f5ad..0000000000
--- a/examples/test-ipfs-example/README.md
+++ /dev/null
@@ -1,7 +0,0 @@
-# test-ipfs-example
-
-This module contains configuration for nightwatch.js and a basic test runner.
-
-[Lerna](http://npmjs.com/package/lerna) should have symlinked this for you in the right place when you ran `npm i` in the root of the [IPFS repo](https://github.com/ipfs/js-ipfs).
-
-If you've installed it, it's probably because you ran `npm i` in one of the [IPFS examples](https://github.com/ipfs/js-ipfs/tree/master/examples).
diff --git a/examples/test-ipfs-example/nightwatch.conf.js b/examples/test-ipfs-example/nightwatch.conf.js
deleted file mode 100644
index 524dc76a6b..0000000000
--- a/examples/test-ipfs-example/nightwatch.conf.js
+++ /dev/null
@@ -1,37 +0,0 @@
-'use strict'
-
-const { ephemeralPort } = require('./utils')
-const path = require('path')
-const chrome = require('chromedriver') // added to work on windows
-
-const WEBRIVER_PORT = ephemeralPort()
-
-// config used to test examples
-module.exports = {
- src_folders: ['tests'],
-
- webdriver: {
- start_process: true,
- server_path: chrome.path, //require.resolve(path.resolve(__dirname, 'node_modules/.bin/chromedriver')), // this wasn't working on windows
- port: WEBRIVER_PORT,
- cli_args: [
- `--port=${WEBRIVER_PORT}`
- ]
- },
-
- test_settings: {
- default: {
- desiredCapabilities: {
- browserName: 'chrome',
- chromeOptions: {
- args: ['headless']
- }
- }
- }
- },
-
- globals: {
- asyncHookTimeout: 120000,
- waitForConditionTimeout: 60000
- }
-}
diff --git a/examples/test-ipfs-example/package.json b/examples/test-ipfs-example/package.json
deleted file mode 100644
index 5f4bcf4559..0000000000
--- a/examples/test-ipfs-example/package.json
+++ /dev/null
@@ -1,18 +0,0 @@
-{
- "name": "test-ipfs-example",
- "version": "3.0.0",
- "description": "Examples of how to use IPFS",
- "bin": {
- "test-ipfs-example": "./test.js"
- },
- "license": "MIT",
- "dependencies": {
- "chromedriver": "latest",
- "execa": "^5.0.0",
- "fs-extra": "^9.0.1",
- "http-server": "^0.12.3",
- "nightwatch": "^1.2.4",
- "uint8arrays": "^2.1.3",
- "which": "^2.0.1"
- }
-}
diff --git a/examples/test-ipfs-example/test.js b/examples/test-ipfs-example/test.js
deleted file mode 100755
index f4c6554d28..0000000000
--- a/examples/test-ipfs-example/test.js
+++ /dev/null
@@ -1,99 +0,0 @@
-#!/usr/bin/env node
-
-'use strict'
-
-process.env.NODE_ENV = 'test'
-process.env.CI = true // needed for some "clever" build tools
-
-const fs = require('fs-extra')
-const path = require('path')
-const execa = require('execa')
-const dir = process.cwd()
-const { startServer } = require('./utils')
-
-testExample(dir)
- .then(() => {}, (err) => {
- if (err.exitCode) {
- process.exit(err.exitCode)
- }
-
- console.error(err)
- process.exit(1)
- })
-
-async function testExample (dir) {
- await build(dir)
-
- const test = require(path.join(dir, 'test.js'))
-
- if (typeof test === 'function') {
- console.info('Running tests in', dir)
-
- await test()
- } else {
- await runBrowserTest(dir)
- }
-
- process.exit(0)
-}
-
-async function build (dir) {
- const pkgJson = path.join(dir, 'package.json')
-
- if (!fs.existsSync(pkgJson)) {
- console.info('Nothing to build in', dir)
- return
- }
-
- const pkg = require(pkgJson)
- let build
-
- if (pkg.scripts.bundle) {
- build = 'bundle'
- }
-
- if (pkg.scripts.build) {
- build = 'build'
- }
-
- if (!build) {
- console.info('No "build" or "bundle" script in', pkgJson)
- return
- }
-
- const proc = execa('npm', ['run', build], {
- cwd: dir,
- all: true
- })
- proc.all.on('data', (data) => {
- process.stdout.write(data)
- })
-
- await proc
-}
-
-async function runBrowserTest (dir) {
- console.info('Running browser tests in', dir)
-
- const server = await startServer(dir)
-
- console.info('Running tests at', server.url)
-
- const proc = execa(path.resolve(__dirname, 'node_modules/.bin/nightwatch'), [ path.join(dir, 'test.js'), '--config', path.resolve(__dirname, 'nightwatch.conf.js') ], {
- cwd: __dirname,
- env: {
- ...process.env,
- IPFS_EXAMPLE_TEST_URL: server.url
- },
- all: true
- })
- proc.all.on('data', (data) => {
- process.stdout.write(data)
- })
-
- try {
- await proc
- } finally {
- server.stop()
- }
-}
diff --git a/examples/test-ipfs-example/utils.js b/examples/test-ipfs-example/utils.js
deleted file mode 100644
index 489da88397..0000000000
--- a/examples/test-ipfs-example/utils.js
+++ /dev/null
@@ -1,163 +0,0 @@
-"use strict";
-
-const fs = require('fs-extra')
-const path = require('path')
-const execa = require('execa')
-const which = require('which')
-const uint8ArrayToString = require('uint8arrays/to-string')
-
-async function startServer(dir) {
- async function serveFrom(appDir) {
- return new Promise((resolve, reject) => {
- let output = ''
- const port = ephemeralPort()
-
- const proc = execa.command(`${path.resolve(__dirname, 'node_modules/.bin/http-server')} ${appDir} -a 127.0.0.1 -p ${port}`, {
- cwd: __dirname,
- all: true
- })
- proc.all.on('data', (data) => {
- process.stdout.write(data)
-
- output += uint8ArrayToString(data)
-
- if (output.includes('Hit CTRL-C to stop the server')) {
- resolve({
- stop: () => {
- console.info("Stopping server");
- proc.kill("SIGINT", {
- forceKillAfterTimeout: 2000,
- });
- },
- url: `http://127.0.0.1:${port}`,
- });
- }
- });
-
- proc.then(
- () => {},
- (err) => reject(err)
- );
- });
- }
-
- // start something..
- const serverPaths = [
- path.join(dir, "build"),
- path.join(dir, "dist"),
- path.join(dir, "public"),
- ];
-
- for (const p of serverPaths) {
- if (fs.existsSync(p)) {
- return serveFrom(p);
- }
- }
-
- // running a bare index.html file
- const files = [path.join(dir, "index.html")];
-
- for (const f of files) {
- if (fs.existsSync(f)) {
- console.info("Found bare file", f);
-
- return Promise.resolve({
- url: `file://${f}`,
- stop: () => {},
- });
- }
- }
-
- throw new Error(
- "Browser examples must contain a `public`, `dist` or `build` folder or an `index.html` file"
- );
-}
-
-function ephemeralPort(min = 49152, max = 65535) {
- return Math.floor(Math.random() * (max - min + 1) + min);
-}
-
-async function isExecutable(command) {
- try {
- await fs.access(command, fs.constants.X_OK);
-
- return true;
- } catch (err) {
- if (err.code === "ENOENT") {
- return isExecutable(await which(command));
- }
-
- if (err.code === "EACCES") {
- return false;
- }
-
- throw err;
- }
-}
-
-async function waitForOutput(expectedOutput, command, args = [], opts = {}) {
- if (!(await isExecutable(command))) {
- args.unshift(command);
- command = "node";
- }
-
- const proc = execa(command, args, { ...opts, all: true });
- let output = "";
- const time = 120000;
-
- let foundExpectedOutput = false;
- let cancelTimeout;
- const timeoutPromise = new Promise((resolve, reject) => {
- const timeout = setTimeout(() => {
- reject(
- new Error(
- `Did not see "${expectedOutput}" in output from "${[command]
- .concat(args)
- .join(" ")}" after ${time / 1000}s`
- )
- );
-
- setTimeout(() => {
- proc.kill();
- }, 100);
- }, time);
-
- cancelTimeout = () => {
- clearTimeout(timeout);
- resolve();
- };
- });
-
- proc.all.on('data', (data) => {
- process.stdout.write(data)
- output += uint8ArrayToString(data)
-
- if (output.includes(expectedOutput)) {
- foundExpectedOutput = true;
- proc.kill();
- cancelTimeout();
- }
- });
-
- try {
- await Promise.race([proc, timeoutPromise]);
- } catch (err) {
- if (!err.killed) {
- throw err;
- }
- }
-
- if (!foundExpectedOutput) {
- throw new Error(
- `Did not see "${expectedOutput}" in output from "${[command]
- .concat(args)
- .join(" ")}"`
- );
- }
-}
-
-module.exports = {
- startServer,
- ephemeralPort,
- waitForOutput,
-};
diff --git a/examples/traverse-ipld-graphs/CHANGELOG.md b/examples/traverse-ipld-graphs/CHANGELOG.md
deleted file mode 100644
index 43971169c9..0000000000
--- a/examples/traverse-ipld-graphs/CHANGELOG.md
+++ /dev/null
@@ -1,115 +0,0 @@
-# Change Log
-
-All notable changes to this project will be documented in this file.
-See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
-
-## [2.0.1](https://github.com/ipfs/js-ipfs/compare/example-traverse-ipld-graphs@2.0.0...example-traverse-ipld-graphs@2.0.1) (2020-04-08)
-
-**Note:** Version bump only for package example-traverse-ipld-graphs
-
-
-
-
-
-# 2.0.0 (2020-03-31)
-
-
-### Bug Fixes
-
-* traverse-ipld-graphs (tree) example ([#2088](https://github.com/ipfs/js-ipfs/issues/2088)) ([b5c652f](https://github.com/ipfs/js-ipfs/commit/b5c652ffac05ce130ff4b79722c6d25de111f25d))
-
-
-### chore
-
-* update to js-ipld 0.19 ([#1668](https://github.com/ipfs/js-ipfs/issues/1668)) ([74edafd](https://github.com/ipfs/js-ipfs/commit/74edafd9d9bc88c82ef0f6589d22a0728ebf864b))
-
-
-### Code Refactoring
-
-* return peer IDs as strings not CIDs ([#2729](https://github.com/ipfs/js-ipfs/issues/2729)) ([16d540c](https://github.com/ipfs/js-ipfs/commit/16d540c540f375061d83dafaf6c38d0b7c4a3d60))
-* update ipld formats, async/await mfs/unixfs & base32 cids ([#2068](https://github.com/ipfs/js-ipfs/issues/2068)) ([813048f](https://github.com/ipfs/js-ipfs/commit/813048ffb32a11cfefc51c2ec8634faaff2a924e)), closes [ipld/js-ipld-dag-pb#137](https://github.com/ipld/js-ipld-dag-pb/issues/137) [ipfs/interface-js-ipfs-core#473](https://github.com/ipfs/interface-js-ipfs-core/issues/473) [ipfs/js-ipfs-http-client#1010](https://github.com/ipfs/js-ipfs-http-client/issues/1010) [ipfs/js-ipfs-http-response#25](https://github.com/ipfs/js-ipfs-http-response/issues/25) [#1995](https://github.com/ipfs/js-ipfs/issues/1995)
-
-
-### Features
-
-* add circuit relay and aegir 12 (+ big refactor) ([104ef1e](https://github.com/ipfs/js-ipfs/commit/104ef1ef6cc64c09ec886f67c28e9b5d37bc9e66))
-
-
-### BREAKING CHANGES
-
-* Where `PeerID`s were previously [CID](https://www.npmjs.com/package/cids)s, now they are Strings
-
-- `ipfs.bitswap.stat().peers[n]` is now a String (was a CID)
-- `ipfs.dht.findPeer().id` is now a String (was a CID)
-- `ipfs.dht.findProvs()[n].id` is now a String (was a CID)
-- `ipfs.dht.provide()[n].id` is now a String (was a CID)
-- `ipfs.dht.put()[n].id` is now a String (was a CID)
-- `ipfs.dht.query()[n].id` is now a String (was a CID)
-- `ipfs.id().id` is now a String (was a CID)
-- `ipfs.id().addresses[n]` are now [Multiaddr](https://www.npmjs.com/package/multiaddr)s (were Strings)
-* The default string encoding for version 1 CIDs has changed to `base32`.
-
-IPLD formats have been updated to the latest versions. IPLD nodes returned by `ipfs.dag` and `ipfs.object` commands have significant breaking changes. If you are using these commands in your application you are likely to encounter the following changes to `dag-pb` nodes (the default node type that IPFS creates):
-
-* `DAGNode` properties have been renamed as follows:
- * `data` => `Data`
- * `links` => `Links`
- * `size` => `size` (Note: no change)
-* `DAGLink` properties have been renamed as follows:
- * `cid` => `Hash`
- * `name` => `Name`
- * `size` => `Tsize`
-
-See CHANGELOGs for each IPLD format for it's respective changes, you can read more about the [`dag-pb` changes in the CHANGELOG](https://github.com/ipld/js-ipld-dag-pb/blob/master)
-
-License: MIT
-Signed-off-by: Alan Shaw
-* dag-cbor nodes now represent links as CID objects
-
-The API for [dag-cbor](https://github.com/ipld/js-ipld-dag-cbor) changed.
-Links are no longer represented as JSON objects (`{"/": "base-encoded-cid"}`,
-but as [CID objects](https://github.com/ipld/js-cid). `ipfs.dag.get()` and now always return links as CID objects. `ipfs.dag.put()` also expects links to be represented as CID objects. The old-style JSON objects representation is still
-supported, but deprecated.
-
-Prior to this change:
-
-```js
-const cid = new CID('QmXed8RihWcWFXRRmfSRG9yFjEbXNxu1bDwgCFAN8Dxcq5')
-// Link as JSON object representation
-const putCid = await ipfs.dag.put({link: {'/': cid.toBaseEncodedString()}})
-const result = await ipfs.dag.get(putCid)
-console.log(result.value)
-
-```
-
-Output:
-
-```js
-{ link:
- { '/':
- } }
-```
-
-Now:
-
-```js
-const cid = new CID('QmXed8RihWcWFXRRmfSRG9yFjEbXNxu1bDwgCFAN8Dxcq5')
-// Link as CID object
-const putCid = await ipfs.dag.put({link: cid})
-const result = await ipfs.dag.get(putCid)
-console.log(result.value)
-```
-
-Output:
-
-```js
-{ link:
- CID {
- codec: 'dag-pb',
- version: 0,
- multihash:
- } }
-```
-
-See https://github.com/ipld/ipld/issues/44 for more information on why this
-change was made.
diff --git a/examples/traverse-ipld-graphs/README.md b/examples/traverse-ipld-graphs/README.md
deleted file mode 100644
index f43e57f484..0000000000
--- a/examples/traverse-ipld-graphs/README.md
+++ /dev/null
@@ -1,66 +0,0 @@
-Resolve through IPLD graphs with the dag API
-============================================
-
-IPLD stands for [`InterPlanetary Linked-Data`](https://ipld.io/), it is the data model of the content-addressable web. It gives IPFS the ability to resolve through any kind of content-addressed graph, as long as the [adapter for the format is available](https://github.com/ipld/interface-ipld-format#modules-that-implement-the-interface).
-
-This tutorial goes through several operations over IPLD graphs using the [DAG API](https://github.com/ipfs/js-ipfs/tree/master/packages/interface-ipfs-core/API/dag).
-
-## Before you start
-
-First clone this repo, install dependencies in the project root and build the project.
-
-```console
-$ git clone https://github.com/ipfs/js-ipfs.git
-$ cd js-ipfs
-$ npm install
-$ npm run build
-```
-
-## IPLD Formats
-
-[IPLD](https://docs.ipld.io/) can read many datatypes, all of which are represented as blocks in the blockstore of your IPFS node. In order to turn a block into a data structure it can use, IPLD uses different codecs to turn `Uint8Arrays` into JavaScript objects and back.
-
-By default IPFS is bundled with [dag-pb](https://www.npmjs.com/package/ipld-dag-pb), [dag-cbor](https://www.npmjs.com/package/ipld-dag-cbor) and [raw](https://www.npmjs.com/package/ipld-raw) codecs which allow reading UnixFS files and JavaScript objects from the blockstore.
-
-To configure other types, we must pass the `ipld.formats` option to the `IPFS.create()` function:
-
-```javascript
-const IPFS = require('ipfs')
-
-const node = await IPFS.create({
- ipld: {
- formats: [
- require('ipld-git'),
- require('ipld-zcash'),
- require('ipld-bitcoin'),
- ...Object.values(require('ipld-ethereum')) // this format exports multiple codecs so flatten into a list
- // etc, etc
- ]
- }
-})
-```
-
-See [ipld/interface-ipld-format](https://github.com/ipld/interface-ipld-format) for a list of modules that implement the `ipld-format` interface.
-
-## [create nodes to build a graph](./put.js)
-
-## [retrieve a node from a graph](./get.js)
-
-## [resolve a path in a graph](./get-path.js)
-
-## [resolve through graphs of different kind](./get-path-accross-formats.js)
-
-## [explore a graph with the .tree](./tree.js)
-
-## [traverse through a slice of the ethereum blockchain](./eth.js)
-
-## [traverse through a git repo](./git.js)
-The example objects contained in "git-objects" have already been decompressed with zlib. An example of how to do this:
-
- $ cat .git/objects/7d/df25817f57c2090a9568cdb17106a76dad7d04 | zlib-flate -uncompress > 7ddf25817f57c2090a9568cdb17106a76dad7d04
-
-## Video of the demos
-
-Find a video with a walkthrough of this examples on Youtube:
-
-[](https://youtu.be/drULwJ_ZDRQ?t=1m29s)
diff --git a/examples/traverse-ipld-graphs/create-node.js b/examples/traverse-ipld-graphs/create-node.js
deleted file mode 100644
index 0163b4c9d1..0000000000
--- a/examples/traverse-ipld-graphs/create-node.js
+++ /dev/null
@@ -1,23 +0,0 @@
-'use strict'
-
-const IPFS = require('ipfs')
-
-function createNode (options) {
- options = options || {}
- options.path = options.path || '/tmp/ipfs' + Math.random()
- return IPFS.create({
- repo: options.path,
- config: {
- Addresses: {
- Swarm: [
- '/ip4/0.0.0.0/tcp/0'
- ],
- API: '/ip4/127.0.0.1/tcp/0',
- Gateway: '/ip4/127.0.0.1/tcp/0'
- }
- },
- ipld: options.ipld
- })
-}
-
-module.exports = createNode
diff --git a/examples/traverse-ipld-graphs/eth-blocks/block_302515 b/examples/traverse-ipld-graphs/eth-blocks/block_302515
deleted file mode 100644
index 1e6b8fdc51..0000000000
Binary files a/examples/traverse-ipld-graphs/eth-blocks/block_302515 and /dev/null differ
diff --git a/examples/traverse-ipld-graphs/eth-blocks/block_302516 b/examples/traverse-ipld-graphs/eth-blocks/block_302516
deleted file mode 100644
index 9c4a667658..0000000000
Binary files a/examples/traverse-ipld-graphs/eth-blocks/block_302516 and /dev/null differ
diff --git a/examples/traverse-ipld-graphs/eth-blocks/block_302517 b/examples/traverse-ipld-graphs/eth-blocks/block_302517
deleted file mode 100644
index 3df292fd2d..0000000000
Binary files a/examples/traverse-ipld-graphs/eth-blocks/block_302517 and /dev/null differ
diff --git a/examples/traverse-ipld-graphs/eth.js b/examples/traverse-ipld-graphs/eth.js
deleted file mode 100644
index adcadf854b..0000000000
--- a/examples/traverse-ipld-graphs/eth.js
+++ /dev/null
@@ -1,48 +0,0 @@
-'use strict'
-
-const createNode = require('./create-node')
-const path = require('path')
-const multihashing = require('multihashing-async')
-const Block = require('ipld-block')
-const CID = require('cids')
-const fs = require('fs').promises
-const uint8ArrayToString = require('uint8arrays/to-string')
-
-async function main () {
- const ipfs = await createNode({
- ipld: {
- formats: [
- ...Object.values(require('ipld-ethereum'))
- ]
- }
- })
-
- console.log('\nStart of the example:')
-
- const ethBlocks = [
- path.join(__dirname, '/eth-blocks/block_302516'),
- path.join(__dirname, '/eth-blocks/block_302517')
- ]
-
- for (const ethBlockPath of ethBlocks) {
- const data = await fs.readFile(ethBlockPath)
- const multihash = await multihashing(data, 'keccak-256')
-
- const cid = new CID(1, 'eth-block', multihash)
- // console.log(cid.toBaseEncodedString())
-
- await ipfs.block.put(new Block(data, cid))
- }
-
- const block302516 = new CID('z43AaGEywSDX5PUJcrn5GfZmb6FjisJyR7uahhWPk456f7k7LDA')
- const block302517 = new CID('z43AaGF42R2DXsU65bNnHRCypLPr9sg6D7CUws5raiqATVaB1jj')
- let res
-
- res = await ipfs.dag.get(block302516, { path: 'number' })
- console.log(uint8ArrayToString(res.value, 'base16'))
-
- res = await ipfs.dag.get(block302517, { path: 'parent/number' })
- console.log(uint8ArrayToString(res.value, 'base16'))
-}
-
-main()
diff --git a/examples/traverse-ipld-graphs/get-path-accross-formats.js b/examples/traverse-ipld-graphs/get-path-accross-formats.js
deleted file mode 100644
index 387ee40473..0000000000
--- a/examples/traverse-ipld-graphs/get-path-accross-formats.js
+++ /dev/null
@@ -1,40 +0,0 @@
-'use strict'
-
-const createNode = require('./create-node')
-const {
- DAGNode
-} = require('ipld-dag-pb')
-const uint8ArrayFromString = require('uint8arrays/from-string')
-
-async function main () {
- const ipfs = await createNode()
-
- console.log('\nStart of the example:')
-
- const someData = uint8ArrayFromString('capoeira')
- const pbNode = new DAGNode(someData)
-
- const pbNodeCid = await ipfs.dag.put(pbNode, {
- format: 'dag-pb',
- hashAlg: 'sha2-256'
- })
-
- const myData = {
- name: 'David',
- likes: ['js-ipfs', 'icecream', 'steak'],
- hobbies: [pbNodeCid]
- }
-
- const cborNodeCid = await ipfs.dag.put(myData, {
- format: 'dag-cbor',
- hashAlg: 'sha3-512'
- })
-
- const result = await ipfs.dag.get(cborNodeCid, {
- path: 'hobbies/0/Data'
- })
-
- console.log(result.value.toString())
-}
-
-main()
diff --git a/examples/traverse-ipld-graphs/get-path.js b/examples/traverse-ipld-graphs/get-path.js
deleted file mode 100644
index 0cf13d2cbf..0000000000
--- a/examples/traverse-ipld-graphs/get-path.js
+++ /dev/null
@@ -1,28 +0,0 @@
-'use strict'
-
-const createNode = require('./create-node')
-
-async function main () {
- const ipfs = await createNode()
-
- console.log('\nStart of the example:')
-
- const myData = {
- name: 'David',
- likes: ['js-ipfs', 'icecream', 'steak']
- }
-
- const cid = await ipfs.dag.put(myData, { format: 'dag-cbor', hashAlg: 'sha2-256' })
- let result
-
- result = await ipfs.dag.get(cid, { path: 'name' })
- console.log(result.value)
-
- result = await ipfs.dag.get(cid, { path: 'likes' })
- console.log(result.value)
-
- result = await ipfs.dag.get(cid, { path: '/likes/0' })
- console.log(result.value)
-}
-
-main()
diff --git a/examples/traverse-ipld-graphs/get.js b/examples/traverse-ipld-graphs/get.js
deleted file mode 100644
index cf045571d7..0000000000
--- a/examples/traverse-ipld-graphs/get.js
+++ /dev/null
@@ -1,21 +0,0 @@
-'use strict'
-
-const createNode = require('./create-node')
-
-async function main () {
- const ipfs = await createNode()
-
- console.log('\nStart of the example:')
-
- const myData = {
- name: 'David',
- likes: ['js-ipfs', 'icecream', 'steak']
- }
-
- const cid = await ipfs.dag.put(myData, { format: 'dag-cbor', hashAlg: 'sha2-256' })
- const result = await ipfs.dag.get(cid)
-
- console.log(JSON.stringify(result.value))
-}
-
-main()
diff --git a/examples/traverse-ipld-graphs/git-objects/0f328c91df28c5c01b9e9f9f7e663191fa156593 b/examples/traverse-ipld-graphs/git-objects/0f328c91df28c5c01b9e9f9f7e663191fa156593
deleted file mode 100644
index 4fc8373bcd..0000000000
Binary files a/examples/traverse-ipld-graphs/git-objects/0f328c91df28c5c01b9e9f9f7e663191fa156593 and /dev/null differ
diff --git a/examples/traverse-ipld-graphs/git-objects/177bf18bc707d82b21cdefd0b43b38fc8c5c13fe b/examples/traverse-ipld-graphs/git-objects/177bf18bc707d82b21cdefd0b43b38fc8c5c13fe
deleted file mode 100644
index b762482e17..0000000000
Binary files a/examples/traverse-ipld-graphs/git-objects/177bf18bc707d82b21cdefd0b43b38fc8c5c13fe and /dev/null differ
diff --git a/examples/traverse-ipld-graphs/git-objects/23cc25f631cb076d5de5036c87678ea713cbaa6a b/examples/traverse-ipld-graphs/git-objects/23cc25f631cb076d5de5036c87678ea713cbaa6a
deleted file mode 100644
index d50e6d186b..0000000000
Binary files a/examples/traverse-ipld-graphs/git-objects/23cc25f631cb076d5de5036c87678ea713cbaa6a and /dev/null differ
diff --git a/examples/traverse-ipld-graphs/git-objects/4e425dba7745a781f0712c9a01455899e8c0c249 b/examples/traverse-ipld-graphs/git-objects/4e425dba7745a781f0712c9a01455899e8c0c249
deleted file mode 100644
index f6de31c9fc..0000000000
Binary files a/examples/traverse-ipld-graphs/git-objects/4e425dba7745a781f0712c9a01455899e8c0c249 and /dev/null differ
diff --git a/examples/traverse-ipld-graphs/git-objects/6850c7be7136e6be00976ddbae80671b945c3e9d b/examples/traverse-ipld-graphs/git-objects/6850c7be7136e6be00976ddbae80671b945c3e9d
deleted file mode 100644
index a3d3a1ea47..0000000000
Binary files a/examples/traverse-ipld-graphs/git-objects/6850c7be7136e6be00976ddbae80671b945c3e9d and /dev/null differ
diff --git a/examples/traverse-ipld-graphs/git-objects/a5095353cd62a178663dd26efc2d61f4f61bccbe b/examples/traverse-ipld-graphs/git-objects/a5095353cd62a178663dd26efc2d61f4f61bccbe
deleted file mode 100644
index fc7fdf00b4..0000000000
Binary files a/examples/traverse-ipld-graphs/git-objects/a5095353cd62a178663dd26efc2d61f4f61bccbe and /dev/null differ
diff --git a/examples/traverse-ipld-graphs/git-objects/dc9bd15e8b81b6565d3736f9c308bd1bba60f33a b/examples/traverse-ipld-graphs/git-objects/dc9bd15e8b81b6565d3736f9c308bd1bba60f33a
deleted file mode 100644
index cc80065138..0000000000
Binary files a/examples/traverse-ipld-graphs/git-objects/dc9bd15e8b81b6565d3736f9c308bd1bba60f33a and /dev/null differ
diff --git a/examples/traverse-ipld-graphs/git-objects/e68e6f6e31857877a79fd6b3956898436bb5a76f b/examples/traverse-ipld-graphs/git-objects/e68e6f6e31857877a79fd6b3956898436bb5a76f
deleted file mode 100644
index 7d01083849..0000000000
Binary files a/examples/traverse-ipld-graphs/git-objects/e68e6f6e31857877a79fd6b3956898436bb5a76f and /dev/null differ
diff --git a/examples/traverse-ipld-graphs/git-objects/ee62b3d206cb23f939208898f32d8708c0e3fa3c b/examples/traverse-ipld-graphs/git-objects/ee62b3d206cb23f939208898f32d8708c0e3fa3c
deleted file mode 100644
index 78a038b49b..0000000000
Binary files a/examples/traverse-ipld-graphs/git-objects/ee62b3d206cb23f939208898f32d8708c0e3fa3c and /dev/null differ
diff --git a/examples/traverse-ipld-graphs/git-objects/ee71cef5001b84b0314438f76cf0acd338a2fd21 b/examples/traverse-ipld-graphs/git-objects/ee71cef5001b84b0314438f76cf0acd338a2fd21
deleted file mode 100644
index 27296bc7a7..0000000000
Binary files a/examples/traverse-ipld-graphs/git-objects/ee71cef5001b84b0314438f76cf0acd338a2fd21 and /dev/null differ
diff --git a/examples/traverse-ipld-graphs/git.js b/examples/traverse-ipld-graphs/git.js
deleted file mode 100644
index 00901e15d5..0000000000
--- a/examples/traverse-ipld-graphs/git.js
+++ /dev/null
@@ -1,66 +0,0 @@
-'use strict'
-
-const createNode = require('./create-node')
-const path = require('path')
-const multihashing = require('multihashing-async')
-const Block = require('ipld-block')
-const CID = require('cids')
-const fs = require('fs').promises
-const uint8ArrayToString = require('uint8arrays/to-string')
-
-async function main () {
- const ipfs = await createNode({
- ipld: {
- formats: [
- require('ipld-git')
- ]
- }
- })
-
- console.log('\nStart of the example:')
-
- const gitObjects = [
- path.join(__dirname, '/git-objects/0f328c91df28c5c01b9e9f9f7e663191fa156593'),
- path.join(__dirname, '/git-objects/177bf18bc707d82b21cdefd0b43b38fc8c5c13fe'),
- path.join(__dirname, '/git-objects/23cc25f631cb076d5de5036c87678ea713cbaa6a'),
- path.join(__dirname, '/git-objects/4e425dba7745a781f0712c9a01455899e8c0c249'),
- path.join(__dirname, '/git-objects/6850c7be7136e6be00976ddbae80671b945c3e9d'),
- path.join(__dirname, '/git-objects/a5095353cd62a178663dd26efc2d61f4f61bccbe'),
- path.join(__dirname, '/git-objects/dc9bd15e8b81b6565d3736f9c308bd1bba60f33a'),
- path.join(__dirname, '/git-objects/e68e6f6e31857877a79fd6b3956898436bb5a76f'),
- path.join(__dirname, '/git-objects/ee62b3d206cb23f939208898f32d8708c0e3fa3c'),
- path.join(__dirname, '/git-objects/ee71cef5001b84b0314438f76cf0acd338a2fd21')
- ]
-
- await Promise.all(gitObjects.map(async gitObjectsPath => {
- const data = await fs.readFile(gitObjectsPath)
- const multihash = await multihashing(data, 'sha1')
-
- const cid = new CID(1, 'git-raw', multihash)
- console.log(cid.toString())
-
- await ipfs.block.put(new Block(data, cid))
- }))
-
- const v1tag = new CID('z8mWaGfwSWLMPJ6Q2JdsAjGiXTf61Nbue')
-
- async function logResult (fn, comment) {
- const result = await fn()
-
- if (result.value instanceof Uint8Array) { // Blobs (files) are returned as buffer instance
- result.value = uint8ArrayToString(result.value)
- }
-
- console.log('-'.repeat(80))
- console.log(comment)
- console.log(result.value)
- }
-
- await logResult(() => ipfs.dag.get(v1tag), 'Tag object:')
- await logResult(() => ipfs.dag.get(v1tag, { path: '/object/message' }), 'Tagged commit message:')
- await logResult(() => ipfs.dag.get(v1tag, { path: '/object/parents/0/message' }), 'Parent of tagged commit:')
- await logResult(() => ipfs.dag.get(v1tag, { path: '/object/tree/src/hash/hello/hash' }), '/src/hello file:')
- await logResult(() => ipfs.dag.get(v1tag, { path: '/object/parents/0/tree/src/hash/hello/hash' }), 'previous version of /src/hello file:')
-}
-
-main()
diff --git a/examples/traverse-ipld-graphs/package.json b/examples/traverse-ipld-graphs/package.json
deleted file mode 100644
index 407cec11a1..0000000000
--- a/examples/traverse-ipld-graphs/package.json
+++ /dev/null
@@ -1,24 +0,0 @@
-{
- "name": "example-traverse-ipld-graphs",
- "description": "How to traverse IPLD graphs",
- "version": "2.0.1",
- "main": "index.js",
- "private": true,
- "scripts": {
- "test": "test-ipfs-example"
- },
- "keywords": [],
- "license": "MIT",
- "devDependencies": {
- "test-ipfs-example": "^3.0.0"
- },
- "dependencies": {
- "cids": "^1.1.6",
- "ipfs": "^0.55.3",
- "ipld-block": "^0.11.0",
- "ipld-dag-pb": "^0.22.1",
- "ipld-git": "^0.6.1",
- "ipld-ethereum": "^6.0.0",
- "multihashing-async": "^2.1.2"
- }
-}
diff --git a/examples/traverse-ipld-graphs/put.js b/examples/traverse-ipld-graphs/put.js
deleted file mode 100644
index 197425f3f0..0000000000
--- a/examples/traverse-ipld-graphs/put.js
+++ /dev/null
@@ -1,21 +0,0 @@
-'use strict'
-
-const createNode = require('./create-node')
-
-async function main () {
- const ipfs = await createNode()
-
- console.log('\nStart of the example:')
-
- const myData = {
- name: 'David',
- likes: ['js-ipfs', 'icecream', 'steak']
- }
-
- const cid = await ipfs.dag.put(myData, { format: 'dag-cbor', hashAlg: 'sha2-256' })
- console.log(cid.toString())
- // should print:
- // bafyreigsccjrxlioppkkzv27se4gxh2aygbxfnsobkaxxqiuni544uk66a
-}
-
-main()
diff --git a/examples/traverse-ipld-graphs/test.js b/examples/traverse-ipld-graphs/test.js
deleted file mode 100644
index 5ad2a2d0e2..0000000000
--- a/examples/traverse-ipld-graphs/test.js
+++ /dev/null
@@ -1,33 +0,0 @@
-'use strict'
-
-const path = require('path')
-const {
- waitForOutput
-} = require('test-ipfs-example/utils')
-
-async function runTest () {
- console.info('Testing put.js')
- await waitForOutput('bafyreigsccjrxlioppkkzv27se4gxh2aygbxfnsobkaxxqiuni544uk66a', path.resolve(__dirname, 'put.js'))
-
- console.info('Testing get.js')
- await waitForOutput('{"name":"David","likes":["js-ipfs","icecream","steak"]}', path.resolve(__dirname, 'get.js'))
-
- console.info('Testing get-path.js')
- await waitForOutput('js-ipfs', path.resolve(__dirname, 'get-path.js'))
-
- console.info('Testing get-path-accross-formats.js')
- await waitForOutput('capoeira', path.resolve(__dirname, 'get-path-accross-formats.js'))
-
- console.info('Testing tree.js')
- await waitForOutput("hobbies/0/Links", path.resolve(__dirname, 'tree.js'))
-
- console.info('Testing eth.js')
- await waitForOutput('302516', path.resolve(__dirname, 'eth.js'))
-
- console.info('Testing git.js')
- await waitForOutput("'hello world!'", path.resolve(__dirname, 'git.js'))
-
- console.info('Done!')
-}
-
-module.exports = runTest
diff --git a/examples/traverse-ipld-graphs/tree.js b/examples/traverse-ipld-graphs/tree.js
deleted file mode 100644
index d9754591c1..0000000000
--- a/examples/traverse-ipld-graphs/tree.js
+++ /dev/null
@@ -1,40 +0,0 @@
-'use strict'
-
-const createNode = require('./create-node')
-const {
- DAGNode
-} = require('ipld-dag-pb')
-const uint8ArrayFromString = require('uint8arrays/from-string')
-
-async function main () {
- const ipfs = await createNode()
-
- console.log('\nStart of the example:')
-
- const someData = uint8ArrayFromString('capoeira')
- const pbNode = new DAGNode(someData)
-
- const pbNodeCid = await ipfs.dag.put(pbNode, {
- format: 'dag-pb',
- hashAlg: 'sha2-256'
- })
-
- const myData = {
- name: 'David',
- likes: ['js-ipfs', 'icecream', 'steak'],
- hobbies: [pbNodeCid]
- }
-
- const cborNodeCid = await ipfs.dag.put(myData, {
- format: 'dag-cbor',
- hashAlg: 'sha3-512'
- })
-
- for await (const path of ipfs.dag.tree(cborNodeCid, { recursive: true })) {
- console.log(path)
- }
-
- await ipfs.stop()
-}
-
-main()
diff --git a/examples/types-use-ipfs-from-ts/README.md b/examples/types-use-ipfs-from-ts/README.md
deleted file mode 100644
index 17983cdaae..0000000000
--- a/examples/types-use-ipfs-from-ts/README.md
+++ /dev/null
@@ -1,56 +0,0 @@
-# Using IPFS with Typescript
-
-> This example provides a template for using js-ipfs in typescript project.
-
-
-## Before you start
-
-First clone this repo, install dependencies in the project root.
-
-```
-git clone https://github.com/ipfs/js-ipfs.git
-cd js-ipfs/examples/types-use-ipfs-from-ts
-npm install
-```
-
-You can type check this example by runing following in the example directory:
-
-```
-npm test
-```
-
-You should see following output:
-
-```
-> tsc --noEmit
-```
-
-If you remove `// @ts-expect-error` comment is `src/main.ts` on line 16 and run `npm test` once again you should see a following output instead:
-
-```
-tsc --noEmit
-
-src/main.ts:16:14 - error TS2339: Property 'toUpperCase' does not exist on type 'CID'.
-
-16 file.cid.toUpperCase()
- ~~~~~~~~~~~
-
-
-Found 1 error.
-```
-
-
-## IntelliSense
-
-In [VSCode](https://code.visualstudio.com/) and other code editors that provide [comparable IntelliSense features](https://docs.microsoft.com/en-us/visualstudio/ide/using-intellisense?view=vs-2019) you should be able to get code auto complete, parameter and return value information for `js-ipfs` APIs.
-
-
-
-## Limitations
-
-- Things should work out of the box, with most `tsconfig` settings, however unless
-[`skipLibCheck`](https://www.typescriptlang.org/tsconfig#skipLibCheck) is set to `true` many errors will be reported.
- > That is because
-types are generated from source JSDoc comments and typescript seems to emit declarations which it then complains about.
-
-- Not all APIs are fully entyped so you might observe gaps and `any` types here and there. We hope to improve this over time.
diff --git a/examples/types-use-ipfs-from-ts/package.json b/examples/types-use-ipfs-from-ts/package.json
deleted file mode 100644
index f2d76212a6..0000000000
--- a/examples/types-use-ipfs-from-ts/package.json
+++ /dev/null
@@ -1,13 +0,0 @@
-{
- "name": "example-types-use-ipfs-from-ts",
- "private": true,
- "dependencies": {
- "ipfs": "^0.55.3"
- },
- "devDependencies": {
- "typescript": "4.2.x"
- },
- "scripts": {
- "test": "tsc --noEmit"
- }
-}
diff --git a/examples/types-use-ipfs-from-ts/preview.png b/examples/types-use-ipfs-from-ts/preview.png
deleted file mode 100644
index 07edb508de..0000000000
Binary files a/examples/types-use-ipfs-from-ts/preview.png and /dev/null differ
diff --git a/examples/types-use-ipfs-from-ts/src/main.ts b/examples/types-use-ipfs-from-ts/src/main.ts
deleted file mode 100644
index 5f84fd8408..0000000000
--- a/examples/types-use-ipfs-from-ts/src/main.ts
+++ /dev/null
@@ -1,36 +0,0 @@
-import { IPFS, create } from 'ipfs'
-import CID from 'cids'
-
-export default async function main() {
- const node = await create()
- const version = await node.version()
-
- console.log('Version:', version.version)
-
- const file = await node.add({
- path: 'hello.txt',
- content: new TextEncoder().encode('Hello World 101')
- })
-
- console.log('Added file:', file.path, file.cid.toString())
- try {
- // @ts-expect-error CID has no toUpperCase method
- file.cid.toUpperCase()
- } catch (error) {
-
- }
-
- const content = await readFile(node, file.cid)
-
- console.log('Added file contents:', content)
-}
-
-const readFile = async (ipfs: IPFS, cid: CID): Promise => {
- const decoder = new TextDecoder()
- let content = ''
- for await (const chunk of ipfs.cat(cid)) {
- content += decoder.decode(chunk)
- }
-
- return content
-}
diff --git a/examples/types-use-ipfs-from-ts/tsconfig.json b/examples/types-use-ipfs-from-ts/tsconfig.json
deleted file mode 100644
index df5cdf36ae..0000000000
--- a/examples/types-use-ipfs-from-ts/tsconfig.json
+++ /dev/null
@@ -1,13 +0,0 @@
-{
- "compilerOptions": {
- "strict": true,
- "skipLibCheck": true,
- "noImplicitAny": false,
- "esModuleInterop": true,
- "moduleResolution": "Node",
- "noEmit": true
- },
- "include": [
- "src"
- ]
-}
diff --git a/examples/types-use-ipfs-from-typed-js/README.md b/examples/types-use-ipfs-from-typed-js/README.md
deleted file mode 100644
index b6cc0d084c..0000000000
--- a/examples/types-use-ipfs-from-typed-js/README.md
+++ /dev/null
@@ -1,59 +0,0 @@
-# Using IPFS with typed JS
-
-> This example provides a template for setting up a [JS project that utilizes type checker](https://www.typescriptlang.org/docs/handbook/type-checking-javascript-files.html) and `js-ipfs` type [declarations the were generated from JSDoc comments](https://www.typescriptlang.org/docs/handbook/declaration-files/dts-from-js.html)
-
-Things should work out of the box, only requirement is to disable
-[`skipLibCheck`](https://www.typescriptlang.org/tsconfig#skipLibCheck) because type declarations generated by typescript for commonjs modules raise some issues when consumed.
-
-
-## Before you start
-
-First clone this repo, install dependencies in the project root.
-
-```
-git clone https://github.com/ipfs/js-ipfs.git
-cd js-ipfs/examples/types-use-ipfs-from-typed-js
-npm install
-```
-
-## Type checking
-
-You can type check this example by runing following in the example directory:
-
-```
-npm test
-```
-
-You should see following output:
-
-```
-> tsc --noEmit
-```
-
-If you remove `// @ts-expect-error` comment is `src/main.js` on line 16 and run `npm test` once again you should see a following output instead:
-
-```
-> tsc --noEmit
-src/main.js:16:14 - error TS2339: Property 'toUpperCase' does not exist on type 'CID'.
-
-16 file.cid.toUpperCase()
- ~~~~~~~~~~~
-
-
-Found 1 error.
-```
-
-## IntelliSense
-
-In [VSCode](https://code.visualstudio.com/) and other code editors that provide [comparable IntelliSense features](https://docs.microsoft.com/en-us/visualstudio/ide/using-intellisense?view=vs-2019) you should be able to get code auto complete, parameter and return value information for `js-ipfs` APIs.
-
-
-
-## Limitations
-
-- Things should work out of the box, with most `tsconfig` settings, however unless
-[`skipLibCheck`](https://www.typescriptlang.org/tsconfig#skipLibCheck) is set to `true` many errors will be reported.
- > That is because
-types are generated from source JSDoc comments and typescript seems to emit declarations which it then complains about.
-
-- Not all APIs are fully entyped so you might observe gaps and `any` types here and there. We hope to improve this over time.
diff --git a/examples/types-use-ipfs-from-typed-js/package.json b/examples/types-use-ipfs-from-typed-js/package.json
deleted file mode 100644
index 824905c83a..0000000000
--- a/examples/types-use-ipfs-from-typed-js/package.json
+++ /dev/null
@@ -1,13 +0,0 @@
-{
- "name": "example-types-use-ipfs-from-typed-js",
- "private": true,
- "dependencies": {
- "ipfs": "^0.55.3"
- },
- "devDependencies": {
- "typescript": "4.2.x"
- },
- "scripts": {
- "test": "tsc --noEmit"
- }
-}
diff --git a/examples/types-use-ipfs-from-typed-js/preview.png b/examples/types-use-ipfs-from-typed-js/preview.png
deleted file mode 100644
index ab897d0f57..0000000000
Binary files a/examples/types-use-ipfs-from-typed-js/preview.png and /dev/null differ
diff --git a/examples/types-use-ipfs-from-typed-js/src/main.js b/examples/types-use-ipfs-from-typed-js/src/main.js
deleted file mode 100644
index c5279b646c..0000000000
--- a/examples/types-use-ipfs-from-typed-js/src/main.js
+++ /dev/null
@@ -1,45 +0,0 @@
-const { create } = require('ipfs')
-/**
- * @typedef {import('ipfs').IPFS} IPFS
- * @typedef {import('cids')} CID
- */
-
-async function main () {
- const node = await create()
- const version = await node.version()
-
- console.log('Version:', version.version)
-
- const file = await node.add({
- path: 'hello.txt',
- content: new TextEncoder().encode('Hello World 101')
- })
-
- console.log('Added file:', file.path, file.cid.toString())
- try {
- // @ts-expect-error CID has no toUpperCase method
- file.cid.toUpperCase()
- } catch(error) {
-
- }
-
- const content = await readFile(node, file.cid)
-
- console.log('Added file contents:', content)
-}
-
-/**
- * @param {IPFS} ipfs
- * @param {CID} cid
- * @returns {Promise}
- */
-const readFile = async (ipfs, cid) => {
- const decoder = new TextDecoder()
- let content = ''
- for await (const chunk of ipfs.cat(cid)) {
- content += decoder.decode(chunk)
- }
- return content
-}
-
-main()
diff --git a/examples/types-use-ipfs-from-typed-js/tsconfig.json b/examples/types-use-ipfs-from-typed-js/tsconfig.json
deleted file mode 100644
index e3bbece785..0000000000
--- a/examples/types-use-ipfs-from-typed-js/tsconfig.json
+++ /dev/null
@@ -1,15 +0,0 @@
-{
- "compilerOptions": {
- "allowJs": true,
- "checkJs": true,
- "strict": true,
- "skipLibCheck": true,
- "noImplicitAny": false,
- "esModuleInterop": true,
- "moduleResolution": "Node",
- "noEmit": true
- },
- "include": [
- "src"
- ]
-}
diff --git a/lerna.json b/lerna.json
index ef851f16ff..86c45bda4a 100644
--- a/lerna.json
+++ b/lerna.json
@@ -1,9 +1,6 @@
{
- "lerna": "3.22.0",
- "packages": [
- "packages/*"
- ],
"version": "independent",
+ "useWorkspaces": true,
"command": {
"bootstrap": {
"hoist": true
@@ -18,7 +15,9 @@
"verifyAccess": false
},
"version": {
- "private": false
+ "allowBranch": ["master", "release/*"],
+ "forcePublish": true,
+ "ignore-changes": [".github/**", "docs/**"]
}
}
}
diff --git a/packages/ipfs/package-list.json b/package-list.json
similarity index 74%
rename from packages/ipfs/package-list.json
rename to package-list.json
index 0dcf92686b..e5ba50b9ef 100644
--- a/packages/ipfs/package-list.json
+++ b/package-list.json
@@ -9,16 +9,13 @@
],
"rows": [
"Files",
- ["ipfs/js-ipfs-unixfs", "ipfs-unixfs-exporter"],
- ["ipfs/js-ipfs-unixfs", "ipfs-unixfs-importer"],
["ipfs/js-ipfs-unixfs", "ipfs-unixfs"],
"Repo",
["ipfs/js-ipfs-repo", "ipfs-repo"],
+ ["ipfs/js-ipfs-repo-migrations", "ipfs-repo-migrations"],
"Exchange",
- ["ipfs/js-ipfs-block-service", "ipfs-block-service"],
- ["ipfs/js-ipfs-block", "ipfs-block"],
["ipfs/js-ipfs-bitswap", "ipfs-bitswap"],
"IPNS",
@@ -31,7 +28,6 @@
["ipfs/js-ipfsd-ctl", "ipfsd-ctl"],
["ipfs/is-ipfs", "is-ipfs"],
["ipfs/aegir", "aegir"],
- ["ipfs/js-ipfs-repo-migrations", "ipfs-repo-migrations"],
"libp2p",
["libp2p/js-libp2p", "libp2p"],
@@ -42,7 +38,7 @@
["libp2p/js-libp2p-kad-dht", "libp2p-kad-dht"],
["libp2p/js-libp2p-mdns", "libp2p-mdns"],
["libp2p/js-libp2p-bootstrap", "libp2p-bootstrap"],
- ["NodeFactoryIo/js-libp2p-noise", "libp2p-noise"],
+ ["ChainSafe/js-libp2p-noise", "libp2p-noise"],
["libp2p/js-libp2p-tcp", "libp2p-tcp"],
["libp2p/js-libp2p-webrtc-star", "libp2p-webrtc-star"],
["libp2p/js-libp2p-websockets", "libp2p-websockets"],
@@ -51,14 +47,12 @@
["libp2p/js-libp2p-delegated-peer-routing", "libp2p-delegated-peer-routing"],
"IPLD",
- ["ipld/js-ipld", "ipld"],
- ["ipld/js-ipld-dag-pb", "ipld-dag-pb"],
- ["ipld/js-ipld-dag-cbor", "ipld-dag-cbor"],
+ ["ipld/js-dag-pb", "@ipld/dag-pb"],
+ ["ipld/js-dag-cbor", "@ipld/dag-cbor"],
"Multiformats",
- ["multiformats/js-multihashing", "multihashing"],
+ ["multiformats/js-multiformats", "multiformats"],
["multiformats/js-mafmt", "mafmt"],
- ["multiformats/js-multiaddr", "multiaddr"],
- ["multiformats/js-multihash", "multihashes"]
+ ["multiformats/js-multiaddr", "@multiformats/multiaddr"]
]
}
diff --git a/package.json b/package.json
index 72c51eb108..824f5a9ed5 100644
--- a/package.json
+++ b/package.json
@@ -2,17 +2,30 @@
"name": "js-ipfs",
"version": "1.0.0",
"description": "JavaScript implementation of the IPFS specification",
+ "license": "Apache-2.0 OR MIT",
+ "homepage": "https://github.com/ipfs/js-ipfs#readme",
+ "repository": {
+ "type": "git",
+ "url": "git+https://github.com/ipfs/js-ipfs.git"
+ },
+ "bugs": {
+ "url": "https://github.com/ipfs/js-ipfs/issues"
+ },
+ "engines": {
+ "node": ">=16.0.0",
+ "npm": ">=7.0.0"
+ },
+ "private": true,
"scripts": {
- "postinstall": "lerna bootstrap",
"link": "lerna link",
- "reset": "lerna run clean && rimraf packages/*/node_modules examples/*/node_modules node_modules",
+ "reset": "lerna run clean && rimraf packages/*/node_modules node_modules package-lock.json packages/*/package-lock.json",
"test": "lerna run test",
"test:node": "lerna run test:node",
- "test:browser": "lerna run test:browser",
- "test:webworker": "lerna run test:webworker",
- "test:electron": "lerna run test:electron",
+ "test:chrome": "lerna run test:chrome",
+ "test:chrome-webworker": "lerna run test:chrome-webworker",
+ "test:firefox": "lerna run test:firefox",
+ "test:firefox-webworker": "lerna run test:firefox-webworker",
"test:electron-main": "lerna run test:electron-main",
- "test:electron-renderer": "lerna run test:electron-renderer",
"test:external": "lerna run test:external",
"test:cli": "lerna run test:cli",
"test:interop": "lerna run test:interop",
@@ -26,24 +39,18 @@
"clean": "lerna run clean",
"lint": "lerna run lint",
"dep-check": "lerna run dep-check",
- "configure-examples": "run-s configure-examples:* release:pre:reinstall release:pre:bundle",
- "configure-examples:add-examples": "json -I -f ./lerna.json -e \"this.packages.push('examples/*'); this.packages = [...new Set(this.packages)]\"",
- "configure-examples:add-hoisted-modules": "json -I -f ./lerna.json -e \"this.command.bootstrap.nohoist = ['ipfs-css', 'tachyons']; this.command.bootstrap.nohoist = [...new Set(this.command.bootstrap.nohoist)]\"",
- "release": "run-s release:pre:* release:publish docker:release release:post:*",
- "release:pre:non-dirty-repo": "git diff --quiet",
- "release:pre:update-contributors": "aegir release --lint=false --test=false --bump=false --build=false --changelog=false --commit=false --tag=false --push=false --ghrelease=false --docs=false --publish=false --types=false",
- "release:pre:reinstall": "npm run reset && npm i && rimraf package-lock.json packages/*/package-lock.json",
- "release:pre:bundle": "NODE_ENV=production npm run build -- --scope={ipfs,ipfs-core,ipfs-*client,ipfs-grpc-protocol,ipfs-message-port-*}",
- "release:publish": "lerna publish",
+ "release": "run-s build npm:release docker:release",
+ "npm:release": "lerna publish from-package --no-push --no-private --yes",
"docker:release": "run-s docker:release:*",
"docker:release:build": "docker build . --no-cache --tag js-ipfs:latest --file ./Dockerfile.latest",
"docker:release:tag-latest": "docker tag js-ipfs:latest docker.io/ipfs/js-ipfs:latest",
"docker:release:tag-version": "docker tag js-ipfs:latest docker.io/ipfs/js-ipfs:v`npm show ipfs@latest version -q`",
"docker:release:push-latest": "docker push ipfs/js-ipfs:latest",
"docker:release:push-version": "docker push ipfs/js-ipfs:v`npm show ipfs@latest version -q`",
- "release:post:update-example-dependencies": "node scripts/update-example-deps.js",
- "release:rc": "run-s release:pre:* release:canary",
- "release:canary": "lerna publish --canary --preid rc --dist-tag next --force-publish --yes",
+ "release:rc": "run-s npm:rc:* docker:rc",
+ "npm:rc:version": "lerna version prerelease --preid `git rev-parse --short HEAD` --force-publish --no-push --yes",
+ "npm:rc:build": "npm run build",
+ "npm:rc:publish": "lerna publish from-package --no-push --no-private --dist-tag next --yes",
"docker:rc": "run-s docker:rc:*",
"docker:rc:build": "docker build . --no-cache --tag js-ipfs:next --file ./Dockerfile.next",
"docker:rc:tag-next": "docker tag js-ipfs:next docker.io/ipfs/js-ipfs:next",
@@ -51,213 +58,19 @@
"docker:rc:push-next": "docker push ipfs/js-ipfs:next",
"docker:rc:push-rc": "docker push ipfs/js-ipfs:v`npm show ipfs@next version -q`"
},
+ "devDependencies": {
+ "lerna": "^6.0.1",
+ "node-fetch": "npm:@achingbrain/node-fetch@^2.6.4",
+ "npm-run-all": "^4.1.5",
+ "rimraf": "^3.0.2"
+ },
"eslintConfig": {
"extends": "ipfs",
"ignorePatterns": [
"!.aegir.js"
]
},
- "devDependencies": {
- "execa": "^5.0.0",
- "json": "^10.0.0",
- "lerna": "^3.22.0",
- "npm-run-all": "^4.1.5",
- "rimraf": "^3.0.2"
- },
- "repository": {
- "type": "git",
- "url": "git+https://github.com/ipfs/js-ipfs.git"
- },
- "private": true,
- "contributors": [
- "David Dias ",
- "achingbrain ",
- "Alan Shaw ",
- "Friedel Ziegelmayer ",
- "Juan Batiz-Benet ",
- "Hugo Dias ",
- "Vasco Santos ",
- "Henrique Dias ",
- "Volker Mische ",
- "ᴠɪᴄᴛᴏʀ ʙᴊᴇʟᴋʜᴏʟᴍ ",
- "Stephen Whitmore ",
- "Marcin Rataj ",
- "Francisco Baio Dias ",
- "Jacob Heun ",
- "Matt Bell ",
- "Richard Schneider ",
- "Pedro Teixeira ",
- "Travis Person ",
- "Kristoffer Ström ",
- "Dmitriy Ryajov ",
- "Irakli Gozalishvili ",
- "Oli Evans ",
- "nginnever ",
- "Richard Littauer ",
- "dirkmc ",
- "Diogo Silva ",
- "Connor Keenan ",
- "Pedro Santos ",
- "Harlan T Wood ",
- "Pascal Precht ",
- "Andrew Nesbitt ",
- "Maciej Krüger ",
- "Michael Garvin ",
- "Steven Allen ",
- "Michael Muré ",
- "João Antunes ",
- "Christian Couder ",
- "Enrico Marino ",
- "Rob Brackett ",
- "Prabhakar Poudel ",
- "Mithgol ",
- "Hector Sanjuan ",
- "Xmader ",
- "Joonas Koivunen ",
- "Gavin McDermott ",
- "Jonathan ",
- "Mikeal Rogers ",
- "Sangwon Hong ",
- "Dzmitry Das ",
- "haad ",
- "Marius Darila ",
- "Andrew de Andrade ",
- "Paulo Rodrigues ",
- "RasmusErik Voel Jensen ",
- "Ryan Bell ",
- "Alex Mingoia ",
- "Yahya ",
- "Matt Ober ",
- "Jeromy ",
- "Mark Robert Henderson ",
- "Andrey ",
- "Antonio Tenorio-Fornés ",
- "Dan Ordille ",
- "David Gilbertson ",
- "Doug A ",
- "Georgios Rassias ",
- "Gorka Ludlow ",
- "Jim Pick ",
- "Jonybang ",
- "Kevin Simper ",
- "Kevin Wang ",
- "0xflotus <0xflotus@gmail.com>",
- "Maxime Lathuilière ",
- "Nuno Nogueira ",
- "Portia Burton ",
- "Raoul Millais ",
- "Sid Harder ",
- "anders ",
- "bluelovers ",
- "samuli ",
- "shunkin ",
- "tcme ",
- "Максим Ильин ",
- "SeungWon ",
- "noah the goodra ",
- "Heo Sangmin ",
- "Lars Gierth ",
- "Lukas Drgon ",
- "Henry Rodrick ",
- "Marcus Bernales ",
- "Mat Kelly ",
- "Hannah Howard ",
- "Guilherme Pacheco ",
- "Matt Zumwalt ",
- "priecint ",
- "Michael Bradley ",
- "Grant Herman ",
- "Michelle Lee ",
- "Giuseppe Bertone ",
- "Mitar ",
- "Giles ",
- "Mohamed Abdulaziz ",
- "André Cruz ",
- "Mounish Sai ",
- "Nate Foss ",
- "Nick Poulden ",
- "Nicolás Santángelo ",
- "George Shammas ",
- "ron litzenberger ",
- "Níckolas Goline ",
- "Gabriel Garrido Calvo ",
- "Orie Steele ",
- "Oskar Nyberg ",
- "Pau Ramon Revilla ",
- "Paul Cowgill ",
- "Filip Š ",
- "Fil ",
- "Felix Yan ",
- "Faheel Ahmad ",
- "Pete Thomas ",
- "Alex North ",
- "sarthak khandelwal ",
- "Donatas Stundys ",
- "Dominic Della Valle ",
- "Dmitry Nikulin ",
- "Dietrich Ayala ",
- "Rod Keys ",
- "Roman Khafizianov ",
- "Davide Icardi ",
- "David da Silva ",
- "SidHarder ",
- "Adam Uhlíř ",
- "David Braun ",
- "Steven Vandevelde ",
- "Subin Siby ",
- "TJKoury ",
- "Tapasweni Pathak ",
- "Tara Vancil ",
- "Terence Pae ",
- "David ",
- "Thiago Delgado ",
- "Thorsten Zoerner ",
- "Timothé ",
- "Danny ",
- "Daniela Borges Matos de Carvalho ",
- "Uroš Jurglič ",
- "Daniel J. O'Quinn ",
- "Daniel Constantin ",
- "Victor Bjelkholm ",
- "Daniel Buchner ",
- "Vincent Martin ",
- "Dafeng ",
- "Vutsal Singhal ",
- "Connor White ",
- "Yole ",
- "Zhiyuan Lin ",
- "Christian Paul ",
- "bitspill ",
- "thattommyhall ",
- "datafatmunger ",
- "Chance Hudson ",
- "Caio Gondim ",
- "CHEVALAY JOSSELIN ",
- "dmitriy ryajov ",
- "elsehow ",
- "ethers ",
- "Bruno Zell ",
- "Bruno Barbieri ",
- "Brian Vander Schaaf ",
- "Bernard Mordan ",
- "hapsody ",
- "isan_rivkin ",
- "Ayush Mahajan ",
- "kevingzhang ",
- "James Halliday ",
- "Jason Carver ",
- "Jeeyong Um ",
- "Jessica Schilling ",
- "Joe Turgeon ",
- "Joel Gustafson ",
- "Johannes Wikner ",
- "John Kane ",
- "Jon Schlinkert ",
- "Jade Meskill ",
- "Jonathan Commins ",
- "leekt216 ",
- "Jacob Karlsson ",
- "Jorropo ",
- "Holodisc "
+ "workspaces": [
+ "packages/*"
]
}
diff --git a/packages/interface-ipfs-core/.aegir.js b/packages/interface-ipfs-core/.aegir.js
index 5f45288dba..3983541128 100644
--- a/packages/interface-ipfs-core/.aegir.js
+++ b/packages/interface-ipfs-core/.aegir.js
@@ -1,7 +1,6 @@
-'use strict'
/** @type {import('aegir').PartialOptions} */
-module.exports = {
+export default {
build: {
bundlesizeMax: '338kB'
}
diff --git a/packages/interface-ipfs-core/CHANGELOG.md b/packages/interface-ipfs-core/CHANGELOG.md
index a14edec050..a0bb3b192a 100644
--- a/packages/interface-ipfs-core/CHANGELOG.md
+++ b/packages/interface-ipfs-core/CHANGELOG.md
@@ -3,6 +3,371 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [0.157.0](https://www.github.com/ipfs/js-ipfs/compare/interface-ipfs-core-v0.156.1...interface-ipfs-core-v0.157.0) (2022-10-24)
+
+
+### ⚠ BREAKING CHANGES
+
+* ipfs is now bundled with libp2p@0.40.x which has different config
+* require IPNS V2 signatures (#4207)
+
+### Features
+
+* upgrade libp2p to 0.40.x ([#4237](https://www.github.com/ipfs/js-ipfs/issues/4237)) ([0cee4a4](https://www.github.com/ipfs/js-ipfs/commit/0cee4a4c55767022584dcbade0b0b9b43326f9c9))
+
+
+### Bug Fixes
+
+* require IPNS V2 signatures ([#4207](https://www.github.com/ipfs/js-ipfs/issues/4207)) ([d1b0a8a](https://www.github.com/ipfs/js-ipfs/commit/d1b0a8a71073b4ece0dbda5a5405d76dd8d5b358))
+
+
+### Dependencies
+
+* The following workspace dependencies were updated
+ * dependencies
+ * ipfs-core-types bumped from ^0.12.1 to ^0.13.0
+
+### [0.156.1](https://www.github.com/ipfs/js-ipfs/compare/interface-ipfs-core-v0.156.0...interface-ipfs-core-v0.156.1) (2022-09-21)
+
+
+### Bug Fixes
+
+* update @multiformats/multiadd to 11.0.0 ([2a830bf](https://www.github.com/ipfs/js-ipfs/commit/2a830bf58a5929fcce51dede871c99f62192fbda))
+
+
+### Dependencies
+
+* The following workspace dependencies were updated
+ * dependencies
+ * ipfs-core-types bumped from ^0.12.0 to ^0.12.1
+
+## [0.156.0](https://www.github.com/ipfs/js-ipfs/compare/interface-ipfs-core-v0.155.2...interface-ipfs-core-v0.156.0) (2022-09-06)
+
+
+### ⚠ BREAKING CHANGES
+
+* update to libp2p@0.38.x (#4151)
+
+### deps
+
+* update to libp2p@0.38.x ([#4151](https://www.github.com/ipfs/js-ipfs/issues/4151)) ([39dbf70](https://www.github.com/ipfs/js-ipfs/commit/39dbf708ec31b263115e44f420651fa4e056a89e))
+
+
+### Dependencies
+
+* The following workspace dependencies were updated
+ * dependencies
+ * ipfs-core-types bumped from ^0.11.0 to ^0.12.0
+
+### [0.155.2](https://www.github.com/ipfs/js-ipfs/compare/interface-ipfs-core-v0.155.1...interface-ipfs-core-v0.155.2) (2022-06-24)
+
+
+### Bug Fixes
+
+* make pubsub message types consistent ([#4145](https://www.github.com/ipfs/js-ipfs/issues/4145)) ([00bd3dd](https://www.github.com/ipfs/js-ipfs/commit/00bd3dd0bca7fc705e5e87272972f586d1f161e8))
+
+### [0.155.1](https://www.github.com/ipfs/js-ipfs/compare/interface-ipfs-core-v0.155.0...interface-ipfs-core-v0.155.1) (2022-06-22)
+
+
+### Dependencies
+
+* The following workspace dependencies were updated
+ * dependencies
+ * ipfs-core-types bumped from ^0.11.0 to ^0.11.1
+
+## [0.155.0](https://www.github.com/ipfs/js-ipfs/compare/interface-ipfs-core-v0.154.3...interface-ipfs-core-v0.155.0) (2022-05-27)
+
+
+### ⚠ BREAKING CHANGES
+
+* This module is now ESM only and there return types of some methods have changed
+
+### Features
+
+* update to libp2p 0.37.x ([#4092](https://www.github.com/ipfs/js-ipfs/issues/4092)) ([74aee8b](https://www.github.com/ipfs/js-ipfs/commit/74aee8b3d78f233c3199a3e9a6c0ac628a31a433))
+
+
+### Dependencies
+
+* The following workspace dependencies were updated
+ * dependencies
+ * ipfs-core-types bumped from ^0.10.3 to ^0.11.0
+
+### [0.154.3](https://www.github.com/ipfs/js-ipfs/compare/interface-ipfs-core-v0.154.2...interface-ipfs-core-v0.154.3) (2022-04-20)
+
+
+### Bug Fixes
+
+* update car dependency for CARv2 read support ([#4085](https://www.github.com/ipfs/js-ipfs/issues/4085)) ([c367840](https://www.github.com/ipfs/js-ipfs/commit/c367840062e3fc555e696e4fc621651ed1929213))
+* upgrade dep of ipfs-utils ^9.0.2->^9.0.6 ([#4086](https://www.github.com/ipfs/js-ipfs/issues/4086)) ([8f7ce23](https://www.github.com/ipfs/js-ipfs/commit/8f7ce23c18be12bdc52b98bfccbd0a5a2a9c9f7e)), closes [#4080](https://www.github.com/ipfs/js-ipfs/issues/4080)
+
+
+### Dependencies
+
+* The following workspace dependencies were updated
+ * dependencies
+ * ipfs-core-types bumped from ^0.10.2 to ^0.10.3
+
+### [0.154.2](https://www.github.com/ipfs/js-ipfs/compare/interface-ipfs-core-v0.154.1...interface-ipfs-core-v0.154.2) (2022-03-01)
+
+
+### Bug Fixes
+
+* missing files on publish ([#4056](https://www.github.com/ipfs/js-ipfs/issues/4056)) ([125d42b](https://www.github.com/ipfs/js-ipfs/commit/125d42ba72f905bf95b66489c1b593cbf0a623cb)), closes [#3976](https://www.github.com/ipfs/js-ipfs/issues/3976)
+
+
+### Dependencies
+
+* The following workspace dependencies were updated
+ * dependencies
+ * ipfs-core-types bumped from ^0.10.1 to ^0.10.2
+
+### [0.154.1](https://www.github.com/ipfs/js-ipfs/compare/interface-ipfs-core-v0.154.0...interface-ipfs-core-v0.154.1) (2022-02-06)
+
+
+### Bug Fixes
+
+* **dag:** replace custom dag walk with multiformats/traversal ([#3950](https://www.github.com/ipfs/js-ipfs/issues/3950)) ([596b1f4](https://www.github.com/ipfs/js-ipfs/commit/596b1f48a014083b1736e4ad7e746c652d2583b1))
+* override hashing algorithm when importing files ([#4042](https://www.github.com/ipfs/js-ipfs/issues/4042)) ([709831f](https://www.github.com/ipfs/js-ipfs/commit/709831f61a822d28a6b8e4d6ddc2b659a836079f)), closes [#3952](https://www.github.com/ipfs/js-ipfs/issues/3952)
+
+
+### Dependencies
+
+* The following workspace dependencies were updated
+ * dependencies
+ * ipfs-core-types bumped from ^0.10.0 to ^0.10.1
+
+## [0.154.0](https://www.github.com/ipfs/js-ipfs/compare/interface-ipfs-core-v0.153.0...interface-ipfs-core-v0.154.0) (2022-01-27)
+
+
+### ⚠ BREAKING CHANGES
+
+* peerstore methods are now all async, the repo is migrated to v12
+* node 15+ is required
+
+### Features
+
+* add support for dag-jose codec ([#4028](https://www.github.com/ipfs/js-ipfs/issues/4028)) ([fbe1492](https://www.github.com/ipfs/js-ipfs/commit/fbe1492395ad98e620a872208530a3f8f61535a9))
+* libp2p async peerstore ([#4018](https://www.github.com/ipfs/js-ipfs/issues/4018)) ([a6b201a](https://www.github.com/ipfs/js-ipfs/commit/a6b201af2c3697430ab0ebe002dd573d185f1ac0))
+
+
+### Bug Fixes
+
+* remove abort-controller deps ([#4015](https://www.github.com/ipfs/js-ipfs/issues/4015)) ([902e887](https://www.github.com/ipfs/js-ipfs/commit/902e887e1acac87f607324fa7cb5ad4b14aefcf3))
+
+
+### Dependencies
+
+* The following workspace dependencies were updated
+ * dependencies
+ * ipfs-core-types bumped from ^0.9.0 to ^0.10.0
+
+## [0.153.0](https://github.com/ipfs/js-ipfs/compare/interface-ipfs-core@0.152.2...interface-ipfs-core@0.153.0) (2021-12-15)
+
+
+### Bug Fixes
+
+* **pubsub:** multibase in pubsub http rpc ([#3922](https://github.com/ipfs/js-ipfs/issues/3922)) ([6eeaca4](https://github.com/ipfs/js-ipfs/commit/6eeaca452c36fa13be42d704575c577e4ca938f1))
+* return nested value from dag.get ([#3966](https://github.com/ipfs/js-ipfs/issues/3966)) ([45ac973](https://github.com/ipfs/js-ipfs/commit/45ac9730d6484e8324acfbc3579fce052b8452d7)), closes [#3957](https://github.com/ipfs/js-ipfs/issues/3957)
+
+
+### chore
+
+* Bump @ipld/dag-cbor to v7 ([#3977](https://github.com/ipfs/js-ipfs/issues/3977)) ([73476f5](https://github.com/ipfs/js-ipfs/commit/73476f55e39ecfb01eb2b4880637aad658f51bc2))
+
+
+### Features
+
+* dht client ([#3947](https://github.com/ipfs/js-ipfs/issues/3947)) ([62d8ecb](https://github.com/ipfs/js-ipfs/commit/62d8ecbc723e693a2544e69172d99c576d187c23))
+* update DAG API to match go-ipfs@0.10 changes ([#3917](https://github.com/ipfs/js-ipfs/issues/3917)) ([38c01be](https://github.com/ipfs/js-ipfs/commit/38c01be03b4fd5f401cd9b698cfdb4237d835b01))
+
+
+### BREAKING CHANGES
+
+* **pubsub:** We had to make breaking changes to `pubsub` commands sent over HTTP RPC to fix data corruption caused by topic names and payload bytes that included `\n`. More details in https://github.com/ipfs/go-ipfs/issues/7939 and https://github.com/ipfs/go-ipfs/pull/8183
+* On decode of CBOR blocks, `undefined` values will be coerced to `null`
+* `ipfs.dag.put` no longer accepts a `format` arg, it is now `storeCodec` and `inputCodec`. `'json'` has become `'dag-json'`, `'cbor'` has become `'dag-cbor'` and so on
+* The DHT API has been refactored to return async iterators of query events
+
+
+
+## [0.152.2](https://github.com/ipfs/js-ipfs/compare/interface-ipfs-core@0.152.1...interface-ipfs-core@0.152.2) (2021-11-24)
+
+**Note:** Version bump only for package interface-ipfs-core
+
+
+
+
+
+## [0.152.1](https://github.com/ipfs/js-ipfs/compare/interface-ipfs-core@0.152.0...interface-ipfs-core@0.152.1) (2021-11-19)
+
+**Note:** Version bump only for package interface-ipfs-core
+
+
+
+
+
+## [0.152.0](https://github.com/ipfs/js-ipfs/compare/interface-ipfs-core@0.151.1...interface-ipfs-core@0.152.0) (2021-11-12)
+
+
+### Bug Fixes
+
+* do not accept single items for ipfs.add ([#3900](https://github.com/ipfs/js-ipfs/issues/3900)) ([04e3cf3](https://github.com/ipfs/js-ipfs/commit/04e3cf3f46b585c4644cba70516f375e95361f52))
+* do not lose files when writing files into subshards that contain other subshards ([#3936](https://github.com/ipfs/js-ipfs/issues/3936)) ([8a3ed19](https://github.com/ipfs/js-ipfs/commit/8a3ed19575beaafe5dfd3bce310a548950c148d0)), closes [#3921](https://github.com/ipfs/js-ipfs/issues/3921)
+
+
+### BREAKING CHANGES
+
+* errors will now be thrown if multiple items are passed to `ipfs.add` or single items to `ipfs.addAll` (n.b. you can still pass a list of a single item to `ipfs.addAll`)
+
+
+
+
+
+## [0.151.1](https://github.com/ipfs/js-ipfs/compare/interface-ipfs-core@0.151.0...interface-ipfs-core@0.151.1) (2021-09-28)
+
+**Note:** Version bump only for package interface-ipfs-core
+
+
+
+
+
+## [0.151.0](https://github.com/ipfs/js-ipfs/compare/interface-ipfs-core@0.150.4...interface-ipfs-core@0.151.0) (2021-09-24)
+
+
+### Features
+
+* pull in new globSource ([#3889](https://github.com/ipfs/js-ipfs/issues/3889)) ([be4a542](https://github.com/ipfs/js-ipfs/commit/be4a5428ebc4b05a2edd9a91bf9df6416c1a8c2b))
+* switch to esm ([#3879](https://github.com/ipfs/js-ipfs/issues/3879)) ([9a40109](https://github.com/ipfs/js-ipfs/commit/9a40109632e5b4837eb77a2f57dbc77fbf1fe099))
+
+
+### BREAKING CHANGES
+
+* the globSource api has changed from `globSource(dir, opts)` to `globSource(dir, pattern, opts)`
+* There are no default exports and everything is now dual published as ESM/CJS
+
+
+
+
+
+## [0.150.4](https://github.com/ipfs/js-ipfs/compare/interface-ipfs-core@0.150.3...interface-ipfs-core@0.150.4) (2021-09-17)
+
+**Note:** Version bump only for package interface-ipfs-core
+
+
+
+
+
+## [0.150.3](https://github.com/ipfs/js-ipfs/compare/interface-ipfs-core@0.150.2...interface-ipfs-core@0.150.3) (2021-09-17)
+
+**Note:** Version bump only for package interface-ipfs-core
+
+
+
+
+
+## [0.150.2](https://github.com/ipfs/js-ipfs/compare/interface-ipfs-core@0.150.1...interface-ipfs-core@0.150.2) (2021-09-02)
+
+
+### Bug Fixes
+
+* declare types in .ts files ([#3840](https://github.com/ipfs/js-ipfs/issues/3840)) ([eba5fe6](https://github.com/ipfs/js-ipfs/commit/eba5fe6832858107b3e1ae02c99de674622f12b4))
+* remove client-side timeout from http rpc calls ([#3178](https://github.com/ipfs/js-ipfs/issues/3178)) ([f11220e](https://github.com/ipfs/js-ipfs/commit/f11220e00a12afed5ebbbd8b4c5134595aea735d)), closes [#3161](https://github.com/ipfs/js-ipfs/issues/3161)
+* remove use of instanceof for CID class ([#3847](https://github.com/ipfs/js-ipfs/issues/3847)) ([ebbb12d](https://github.com/ipfs/js-ipfs/commit/ebbb12db523c53ce8e4ddae5266cd9acb3504431))
+
+
+
+
+
+## [0.150.1](https://github.com/ipfs/js-ipfs/compare/interface-ipfs-core@0.150.0...interface-ipfs-core@0.150.1) (2021-08-25)
+
+**Note:** Version bump only for package interface-ipfs-core
+
+
+
+
+
+## [0.150.0](https://github.com/ipfs/js-ipfs/compare/interface-ipfs-core@0.149.0...interface-ipfs-core@0.150.0) (2021-08-17)
+
+
+### Bug Fixes
+
+* pin nanoid version ([#3807](https://github.com/ipfs/js-ipfs/issues/3807)) ([474523a](https://github.com/ipfs/js-ipfs/commit/474523ab8702729f697843d433a7a08baf2d101f))
+* throw error on missing input to add/addAll ([#3818](https://github.com/ipfs/js-ipfs/issues/3818)) ([1343708](https://github.com/ipfs/js-ipfs/commit/1343708f70d7298b6677555803d68ff282d89439)), closes [#3788](https://github.com/ipfs/js-ipfs/issues/3788)
+
+
+### Features
+
+* pubsub over gRPC ([#3813](https://github.com/ipfs/js-ipfs/issues/3813)) ([e7d5509](https://github.com/ipfs/js-ipfs/commit/e7d5509c87e87aed6be3c1d0b2a01ab74cdc1ed9)), closes [#3741](https://github.com/ipfs/js-ipfs/issues/3741)
+
+
+
+
+
+## [0.149.0](https://github.com/ipfs/js-ipfs/compare/interface-ipfs-core@0.148.0...interface-ipfs-core@0.149.0) (2021-08-11)
+
+
+### Bug Fixes
+
+* return rate in/out as number ([#3798](https://github.com/ipfs/js-ipfs/issues/3798)) ([2f3df7a](https://github.com/ipfs/js-ipfs/commit/2f3df7a70fe94d6bdf20947854dc9d0b88cb759a)), closes [#3782](https://github.com/ipfs/js-ipfs/issues/3782)
+
+
+### Features
+
+* ed25519 keys by default ([#3693](https://github.com/ipfs/js-ipfs/issues/3693)) ([33fa734](https://github.com/ipfs/js-ipfs/commit/33fa7341c3baaf0926d887c071cc6fbce5ac49a8))
+* make ipfs.get output tarballs ([#3785](https://github.com/ipfs/js-ipfs/issues/3785)) ([1ad6001](https://github.com/ipfs/js-ipfs/commit/1ad60018d39d5b46c484756631e30e1989fd8eba))
+
+
+### BREAKING CHANGES
+
+* rateIn/rateOut are returned as numbers
+* the output type of `ipfs.get` has changed and the `recursive` option has been removed from `ipfs.ls` since it was not supported everywhere
+
+
+
+
+
+## [0.148.0](https://github.com/ipfs/js-ipfs/compare/interface-ipfs-core@0.147.0...interface-ipfs-core@0.148.0) (2021-07-27)
+
+
+### Bug Fixes
+
+* fix flaky pubsub test ([#3761](https://github.com/ipfs/js-ipfs/issues/3761)) ([8bcf56f](https://github.com/ipfs/js-ipfs/commit/8bcf56fbec7324dc13d3ec5dce08806a6ef2f974))
+* flaky timeout test ([#3767](https://github.com/ipfs/js-ipfs/issues/3767)) ([55afc2f](https://github.com/ipfs/js-ipfs/commit/55afc2f8ee483f4b2807598b7371561d39229e17))
+* make "ipfs resolve" cli command recursive by default ([#3707](https://github.com/ipfs/js-ipfs/issues/3707)) ([399ce36](https://github.com/ipfs/js-ipfs/commit/399ce367a1dbc531b52fe228ee4212008c9a1091)), closes [#3692](https://github.com/ipfs/js-ipfs/issues/3692)
+
+
+### Features
+
+* implement dag import/export ([#3728](https://github.com/ipfs/js-ipfs/issues/3728)) ([700765b](https://github.com/ipfs/js-ipfs/commit/700765be2634fa5d2d71d8b87cf68c9cd328d2c4)), closes [#2953](https://github.com/ipfs/js-ipfs/issues/2953) [#2745](https://github.com/ipfs/js-ipfs/issues/2745)
+* upgrade to the new multiformats ([#3556](https://github.com/ipfs/js-ipfs/issues/3556)) ([d13d15f](https://github.com/ipfs/js-ipfs/commit/d13d15f022a87d04a35f0f7822142f9cb898479c))
+
+
+### BREAKING CHANGES
+
+* resolve is now recursive by default
+
+Co-authored-by: Alex Potsides
+* ipld-formats no longer supported, use multiformat BlockCodecs instead
+
+Co-authored-by: Rod Vagg
+Co-authored-by: achingbrain
+
+
+
+
+
+## [0.147.0](https://github.com/ipfs/js-ipfs/compare/interface-ipfs-core@0.146.1...interface-ipfs-core@0.147.0) (2021-06-18)
+
+
+### Features
+
+* support v2 ipns signatures ([#3708](https://github.com/ipfs/js-ipfs/issues/3708)) ([ade01d1](https://github.com/ipfs/js-ipfs/commit/ade01d138bb185fda902c0a3f7fa14d5bfd48a5e))
+
+
+
+
+
## [0.146.1](https://github.com/ipfs/js-ipfs/compare/interface-ipfs-core@0.146.0...interface-ipfs-core@0.146.1) (2021-06-05)
@@ -14,7 +379,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
-# [0.146.0](https://github.com/ipfs/js-ipfs/compare/interface-ipfs-core@0.145.1...interface-ipfs-core@0.146.0) (2021-05-26)
+## [0.146.0](https://github.com/ipfs/js-ipfs/compare/interface-ipfs-core@0.145.1...interface-ipfs-core@0.146.0) (2021-05-26)
### Features
@@ -36,7 +401,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
-# [0.145.0](https://github.com/ipfs/js-ipfs/compare/interface-ipfs-core@0.144.2...interface-ipfs-core@0.145.0) (2021-05-10)
+## [0.145.0](https://github.com/ipfs/js-ipfs/compare/interface-ipfs-core@0.144.2...interface-ipfs-core@0.145.0) (2021-05-10)
### Bug Fixes
@@ -82,7 +447,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
-# [0.144.0](https://github.com/ipfs/js-ipfs/compare/interface-ipfs-core@0.143.1...interface-ipfs-core@0.144.0) (2021-02-01)
+## [0.144.0](https://github.com/ipfs/js-ipfs/compare/interface-ipfs-core@0.143.1...interface-ipfs-core@0.144.0) (2021-02-01)
### Bug Fixes
@@ -116,7 +481,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
-# [0.143.0](https://github.com/ipfs/js-ipfs/compare/interface-ipfs-core@0.142.3...interface-ipfs-core@0.143.0) (2021-01-15)
+## [0.143.0](https://github.com/ipfs/js-ipfs/compare/interface-ipfs-core@0.142.3...interface-ipfs-core@0.143.0) (2021-01-15)
### chore
@@ -173,7 +538,7 @@ Co-authored-by: Hugo Dias
-# [0.142.0](https://github.com/ipfs/js-ipfs/compare/interface-ipfs-core@0.141.0...interface-ipfs-core@0.142.0) (2020-11-09)
+## [0.142.0](https://github.com/ipfs/js-ipfs/compare/interface-ipfs-core@0.141.0...interface-ipfs-core@0.142.0) (2020-11-09)
### Features
@@ -184,7 +549,7 @@ Co-authored-by: Hugo Dias
-# [0.141.0](https://github.com/ipfs/js-ipfs/compare/interface-ipfs-core@0.140.0...interface-ipfs-core@0.141.0) (2020-10-28)
+## [0.141.0](https://github.com/ipfs/js-ipfs/compare/interface-ipfs-core@0.140.0...interface-ipfs-core@0.141.0) (2020-10-28)
### Bug Fixes
@@ -208,7 +573,7 @@ Co-authored-by: Geoffrey Cohler
-# [0.140.0](https://github.com/ipfs/js-ipfs/compare/interface-ipfs-core@0.139.1...interface-ipfs-core@0.140.0) (2020-09-03)
+## [0.140.0](https://github.com/ipfs/js-ipfs/compare/interface-ipfs-core@0.139.1...interface-ipfs-core@0.140.0) (2020-09-03)
### Bug Fixes
@@ -238,7 +603,7 @@ Co-authored-by: Geoffrey Cohler
-# [0.139.0](https://github.com/ipfs/js-ipfs/compare/interface-ipfs-core@0.138.0...interface-ipfs-core@0.139.0) (2020-08-12)
+## [0.139.0](https://github.com/ipfs/js-ipfs/compare/interface-ipfs-core@0.138.0...interface-ipfs-core@0.139.0) (2020-08-12)
### Bug Fixes
@@ -259,7 +624,7 @@ Co-authored-by: Geoffrey Cohler
-# [0.138.0](https://github.com/ipfs/js-ipfs/compare/interface-ipfs-core@0.137.0...interface-ipfs-core@0.138.0) (2020-07-16)
+## [0.138.0](https://github.com/ipfs/js-ipfs/compare/interface-ipfs-core@0.137.0...interface-ipfs-core@0.138.0) (2020-07-16)
### Bug Fixes
@@ -276,7 +641,7 @@ Co-authored-by: Geoffrey Cohler
-# [0.137.0](https://github.com/ipfs/js-ipfs/compare/interface-ipfs-core@0.136.0...interface-ipfs-core@0.137.0) (2020-06-24)
+## [0.137.0](https://github.com/ipfs/js-ipfs/compare/interface-ipfs-core@0.136.0...interface-ipfs-core@0.137.0) (2020-06-24)
### Features
@@ -287,7 +652,7 @@ Co-authored-by: Geoffrey Cohler
-# [0.136.0](https://github.com/ipfs/js-ipfs/compare/interface-ipfs-core@0.135.1...interface-ipfs-core@0.136.0) (2020-06-05)
+## [0.136.0](https://github.com/ipfs/js-ipfs/compare/interface-ipfs-core@0.135.1...interface-ipfs-core@0.136.0) (2020-06-05)
### Features
@@ -306,7 +671,7 @@ Co-authored-by: Geoffrey Cohler