You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 12, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+22Lines changed: 22 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -64,6 +64,7 @@ You can check the development status at the [Waffle Board](https://waffle.io/ipf
64
64
-[Network](#network)
65
65
-[Node Management](#node-management)
66
66
-[Domain data types](#domain-data-types)
67
+
-[FAQ](#faq)
67
68
-[Packages](#packages)
68
69
-[Development](#development)
69
70
-[Clone and install dependencies](#clone-and-install-dependencies)
@@ -441,6 +442,27 @@ Yes, unfortunately, due to [Chrome aggressive resource throttling policy](https:
441
442
442
443
A way to mitigate this in Chrome, is to run your IPFS node inside a Service Worker, so that the IPFS instance runs in a background process. You can learn how to install an IPFS node as a service worker in here the repo [ipfs-service-worker](https://github.com/ipfs/ipfs-service-worker)
443
444
445
+
#### Can I use IPFS in my Electron App?
446
+
447
+
Yes you can and in many ways. Read https://github.com/ipfs/notes/issues/256 for the multiple options.
448
+
449
+
If your electron-rebuild step is failing, all you need to do is:
450
+
451
+
```bash
452
+
# Electron's version.
453
+
export npm_config_target=1.7.6
454
+
# The architecture of Electron, can be ia32 or x64.
0 commit comments