├── LICENSE └── README.md /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Awesome web3 2 | 🚀 A list of tools, libs and resources to help you build awesome dapps 3 | 4 | *Heads up!* This is a list of resources to help with the browser frontend of dapp development. For resources on how to get up and running with Ethereum and Solidity you might want to check these out: 5 | 6 | * https://github.com/btomashvili/awesome-ethereum 7 | * https://github.com/bkrem/awesome-solidity 8 | * https://github.com/vinsgo/awesome-ethereum 9 | * https://github.com/toadkicker/awesome-ethereum 10 | 11 | ### Web3 libraries 12 | * [oo7-parity](https://github.com/paritytech/parity/wiki/oo7-Parity-Reference) 13 | * [embark-framework](https://github.com/iurimatias/embark-framework) 14 | * [UseSIWE](https://github.com/random-bits-studio/use-siwe) 15 | 16 | ### IPFS libraries 17 | * [ipfs-mini](https://www.npmjs.com/package/ipfs-mini) 18 | * [ipfs-pinner](https://github.com/wabarc/ipfs-pinner) 19 | 20 | ### Replicated data types for distributed systems 21 | * [ipfs-log](https://github.com/haadcode/ipfs-log) 22 | * [y.js](https://github.com/y-js/yjs) 23 | * [y.js ipfs connector](https://github.com/ipfs-shipyard/y-ipfs-connector) 24 | * [swarm.js](https://github.com/gritzko/swarm) 25 | 26 | ### Distributed databases 27 | * [orbit-db](https://github.com/orbitdb/orbit-db) 28 | * [pouchDB](https://pouchdb.com) 29 | * [RxDB](https://github.com/pubkey/rxdb) 30 | * [gun](http://gun.js.org) 31 | * [BigchainDB](https://www.bigchaindb.com) 32 | * [Bluzelle](https://bluzelle.com/) 33 | * [Fluence](http://fluence.ai/) 34 | * [DB3 Network](https://github.com/dbpunk-labs/db3) 35 | * [Polybase](https://github.com/polybase/) 36 | 37 | ### Helpful browser APIs (and wrapper libraries) 38 | * [Web Crypto API](https://developer.mozilla.org/en-US/docs/Web/API/Web_Crypto_API) 39 | * [Service Worker API](https://developer.mozilla.org/de/docs/Web/API/Service_Worker_API) 40 | * [Service Worker Background Sync](https://developer.mozilla.org/en-US/docs/Web/API/SyncManager) 41 | * [Web Worker API](https://developer.mozilla.org/en-US/docs/Web/API/Web_Workers_API/Using_web_workers) 42 | * [IndexedDB](https://developer.mozilla.org/de/docs/IndexedDB) 43 | * [idb - IndexedDB promise wrapper](https://github.com/jakearchibald/idb) 44 | 45 | ### Resource 46 | * [Micro frontends](https://medium.com/@tomsoderlund/micro-frontends-a-microservice-approach-to-front-end-web-development-f325ebdadc16) 47 | * [IPFS links on CRDTs](https://github.com/ipfs/research-CRDT) 48 | 49 | ### Web3 as a service 50 | * [Infura](https://infura.io) 51 | * [QuikNode](https://quiknode.io) 52 | * [SimpleHash](https://simplehash.com/) - multi-chain NFT API 53 | 54 | ### Web3 communities 55 | * [Launchcaster](https://www.launchcaster.xyz/) 56 | 57 | ### Web3 Job boards 58 | * [MyWeb3Jobs](https://myweb3jobs.com) 59 | 60 | ## How to contribute 61 | Wanna see your favourite link here? Just file an issue or directly add a PR with your helpful links :) 62 | --------------------------------------------------------------------------------