examples
examples copied to clipboard
[ARCHIVED] DEPRECATED — merged into IPFS docs
If I run the IPFS daemon as a "LaunchAgent" as described [here](https://github.com/ipfs/examples/blob/master/examples/init/README.md#launchd), then start it as described, I see it show up: ``` ➜ ~ launchctl list | grep ipfs...
see: https://github.com/ipfs/examples/tree/master/examples/api/service#making-your-own-ipfs-service The example code ["Making your own ipfs service"](https://github.com/ipfs/examples/tree/master/examples/api/service#making-your-own-ipfs-service) is outdated and broken since "go-ipfs/core/corenet" was deprecated during the follow commits: https://github.com/ipfs/go-ipfs/pull/3943/commits of our developer [magik6k](https://github.com/magik6k). The related article...
Note to self. Something like: Write this to index.js ``` javascript var ipfs = require('ipfs-api')(); function store() { var toStore = document.getElementById('source').value; //TODO un-break this call: ipfs.add(new Buffer(toStore), function (err,...
The current examples/api/demoapp documentation has an error where it defines `cfg` twice using two different styles: ``` cfg := &core.BuildCfg{ Repo: r, Online: true, } cfg := new(core.BuildCfg) cfg.Repo =...
License: MIT Signed-off-by: Yuval Langer [email protected]
I just discovered examples/websites, it is not linked under https://ipfs.io/docs/examples/ and doesn't appear to be available on ipfs.io. Is this intentional or an oversight?
There is a whole new collection of libp2p examples available at: https://github.com/libp2p/js-libp2p/tree/master/examples 
Seems like in 0.4.10, ipfs diag net is no longer present, but its still shows up in the documentation and examples.. Perhaps that needs to be replaced with some other...