{"id":14956259,"url":"https://github.com/lorransutter/ipfs-demo","last_synced_at":"2026-01-21T11:02:06.585Z","repository":{"id":40715700,"uuid":"271624809","full_name":"LorranSutter/IPFS-demo","owner":"LorranSutter","description":"Simple demo of IPFS","archived":false,"fork":false,"pushed_at":"2023-01-05T21:43:50.000Z","size":1960,"stargazers_count":1,"open_issues_count":13,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-08T11:38:14.964Z","etag":null,"topics":["ipfs","ipfs-api","ipfs-blockchain","reactjs"],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/LorranSutter.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-06-11T18:56:30.000Z","updated_at":"2023-03-07T07:57:01.000Z","dependencies_parsed_at":"2023-02-04T17:33:02.613Z","dependency_job_id":null,"html_url":"https://github.com/LorranSutter/IPFS-demo","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/LorranSutter/IPFS-demo","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LorranSutter%2FIPFS-demo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LorranSutter%2FIPFS-demo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LorranSutter%2FIPFS-demo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LorranSutter%2FIPFS-demo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/LorranSutter","download_url":"https://codeload.github.com/LorranSutter/IPFS-demo/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LorranSutter%2FIPFS-demo/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28632253,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-21T04:47:28.174Z","status":"ssl_error","status_checked_at":"2026-01-21T04:47:22.943Z","response_time":86,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ipfs","ipfs-api","ipfs-blockchain","reactjs"],"created_at":"2024-09-24T13:12:36.702Z","updated_at":"2026-01-21T11:02:06.567Z","avatar_url":"https://github.com/LorranSutter.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# IPFS Demo\n\nDemo of IPFS usage using ReactJS and IPFS HTTP client presented as lab assingment for BCDV1011 - Design Patterns for Blockchain from \u003ca href='https://www.georgebrown.ca/programs/blockchain-development-program-t175/'\u003eBlockchain Development\u003c/a\u003e program from \u003ca href='https://www.georgebrown.ca'\u003eGeorge Brown College\u003c/a\u003e.\n\n\u003cp align=\"center\"\u003e\n\n\u003cimg src=\"https://res.cloudinary.com/lorransutter/image/upload/v1592162287/IPFS_Demo.gif\" max-height=\"400\"\u003e\n\n\u003c/p\u003e\n\n## :runner: How to run\n\nOpen your terminal in the folder you want to clone the project\n\n```sh\n# Clone this repo\ngit clone https://github.com/LorranSutter/IPFS-demo.git\n\n# Go to the project folder\ncd IPFS-demo\n\n# Install dependencies\nyarn\n```\n\nNow you will need two opened terminals to run the project. One for IPFS and another one for the frontend.\n\nIPFS will run on http://127.0.0.1:5001/\n\nFrontend will run on http://localhost:3000/\n\nIn this project I have employed go-ipfs. You may download and install [here](https://dist.ipfs.io/#go-ipfs). In windows you just have to click on the executable file to run IPFS. In both Linux and Mac you may follow command line of [these steps](https://docs.ipfs.io/how-to/command-line-quick-start/#install-ipfs).\n\nIf you are running IPFS locally there is a great chance of having problems due to cross-origin requests, because there will be requests from localhost:3000 to 127.0.0.1:5001. To fix that you may access [IPFS web UI](http://127.0.0.1:5001/webui) and change JSON configuration file adding the following code in API key:\n\n```json\n\"API\": {\n\t\"HTTPHeaders\": {\n\t\t\"Access-Control-Allow-Methods\": [\"GET\",\"POST\",\"PUT\"],\n\t\t\"Access-Control-Allow-Origin\": [\"*\"]\n\t\t}\n\t}\n```\n\n```sh\n## In the another terminal ##\n\n# Run the project\nyarn start\n```\n\n## :book: Resources and technologies :computer:\n\n- [IPFS](https://ipfs.io/) - InterPlanetary File System\n- [IPFS http client](https://www.npmjs.com/package/ipfs-http-client) - IPFS for client side\n- [ReactJS](https://reactjs.org/) - frontend library\n- [Polaris](https://polaris.shopify.com/) - design system\n- [React icons](https://www.npmjs.com/package/react-icons) - icons library provider\n- [React dropzone](https://react-dropzone.js.org/) - create zone to drop files\n- [Detect file type](https://www.npmjs.com/package/detect-file-type) - file type detection","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Florransutter%2Fipfs-demo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Florransutter%2Fipfs-demo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Florransutter%2Fipfs-demo/lists"}