examples icon indicating copy to clipboard operation
examples copied to clipboard

[ARCHIVED] DEPRECATED — merged into IPFS docs

Results 23 examples issues
Sort by recently updated
recently updated
newest added

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 =...

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 ![image](https://user-images.githubusercontent.com/1211152/29497263-208ed822-85dd-11e7-8533-e2a4258c01c5.png)

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...