Skip to content
This repository was archived by the owner on Mar 10, 2020. It is now read-only.

Fix cat stream bug #320

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions examples/browser-add/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
bundle.js
18 changes: 18 additions & 0 deletions examples/browser-add/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# JS IPFS API - Example Browser - Add

## Setup

Install [go-ipfs](https://ipfs.io/docs/install/) and run it

```bash
$ ipfs daemon
```

then in this folder run

```bash
$ npm install
$ npm start
```

and open your browser at `http://localhost:8888`
18 changes: 18 additions & 0 deletions examples/browser-add/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<title>JS IPFS API - Example - Browser - Add</title>
<script src="bundle.js"></script>
</head>
<body>
<h1>JS IPFS API - Add file from the browser</h1>
<textarea id="source">
</textarea>
<button id="store">create in ipfs</button>
<div><div>found in ipfs:</div>
<div id="hash">[ipfs hash]</div>
<div id="content">[ipfs content]</div>
</div>
</body>
</html>
41 changes: 41 additions & 0 deletions examples/browser-add/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
var IPFS = require('ipfs-api')
var ipfs = IPFS()

function store () {
var toStore = document.getElementById('source').value
//TODO un-break this call:
ipfs.add(new Buffer(toStore), function (err, res) {
if(err || !res) return console.error("ipfs add error", err, res)

res.forEach(function (file) {
console.log('successfully stored', file.Hash);
display(file.Hash);
})
})
}

function display (hash) {
ipfs.cat(hash, function (err, stream) {
if(err || !stream) return console.error("ipfs cat error", err, stream);
var res = '';

if(!stream.readable) {
console.error('unhandled: cat result is a pipe', stream);
} else {
stream.on('data', function (chunk) {
res += chunk.toString();
})

stream.on('error', function (err) {
console.error('Oh nooo', err);
})

stream.on('end', function () {
document.getElementById('hash').innerText = hash;
document.getElementById('content').innerText = res;
})
}
});
}

document.getElementById('store').onclick=store;
18 changes: 18 additions & 0 deletions examples/browser-add/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"name": "ipfs-api-example-browser-add",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "browserify -t brfs index.js > bundle.js && http-server -a 127.0.0.1 -p 8888"
},
"keywords": [],
"author": "Friedel Ziegelmayer",
"license": "MIT",
"devDependencies": {
"brfs": "^1.4.3",
"browserify": "^13.0.1",
"http-server": "^0.9.0",
"ipfs-api": "^6.0.3"
}
}