{"id":18996221,"url":"https://github.com/arpitgo4/bitcoin-wallet","last_synced_at":"2026-04-29T21:03:18.589Z","repository":{"id":91905982,"uuid":"120607347","full_name":"arpitgo4/Bitcoin-Wallet","owner":"arpitgo4","description":"Browser based Bitcoin wallet implementation.","archived":false,"fork":false,"pushed_at":"2018-02-12T17:43:01.000Z","size":288,"stargazers_count":1,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-10-26T12:35:06.750Z","etag":null,"topics":["bitcoin-wallet","cryptocurrency","cryptography","react-router","reactjs"],"latest_commit_sha":null,"homepage":"https://bitcoin-wallet.herokuapp.com/","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/arpitgo4.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-02-07T11:37:15.000Z","updated_at":"2020-06-30T16:11:07.000Z","dependencies_parsed_at":null,"dependency_job_id":"e3e4d2e5-c50c-4f91-a1e0-3dfede2c4c5c","html_url":"https://github.com/arpitgo4/Bitcoin-Wallet","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/arpitgo4/Bitcoin-Wallet","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arpitgo4%2FBitcoin-Wallet","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arpitgo4%2FBitcoin-Wallet/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arpitgo4%2FBitcoin-Wallet/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arpitgo4%2FBitcoin-Wallet/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/arpitgo4","download_url":"https://codeload.github.com/arpitgo4/Bitcoin-Wallet/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arpitgo4%2FBitcoin-Wallet/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32443576,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-29T20:22:27.477Z","status":"ssl_error","status_checked_at":"2026-04-29T20:22:26.507Z","response_time":110,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["bitcoin-wallet","cryptocurrency","cryptography","react-router","reactjs"],"created_at":"2024-11-08T17:34:22.717Z","updated_at":"2026-04-29T21:03:18.572Z","avatar_url":"https://github.com/arpitgo4.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n# React-Redux-Scaffold [![Build Status](https://travis-ci.org/arpitgo4/React-Redux-Scaffold.svg?branch=master)](https://travis-ci.org/arpitgo4/React-Redux-Scaffold)\nClient side scaffold with React-Redux on the frontend and Express server to serve built files in the production mode. Scaffold supports production and development modes, with **Best Developer Experience** ( DX ) by Hot-Loading for the client side application. There will be no need to restart during development, hence making the experience smooth and decrease the delivery time.\n\n## Scaffold Structure \n\n```\n\t.\n\t├── src                     \t#  Frontend source files\n\t|   ├── components          \t#  React component's source\n\t|   ├── config              \t#  Redux store's configuration\n\t|   ├── layouts             \t#  React layout component's source\n\t|   |   └── App.Router.js \t#  React Router    \n\t|   ├── reducers            \t#  Redux reducer's source\n\t|   ├── index.html          \t#  Root HTML template\n\t|   ├── index.js            \t#  Frontend source entry point\n\t|   └── style.scss           \t#  Global Sass stylesheet\n\t├── .babelrc                \t#  Babel configuration ( ES6, React, JSX )\n\t├── .eslintrc               \t#  ESLint configuration\n\t├── .travis.yml \t\t#  Travis CI configuration file\n\t├── devServer.js            \t#  Hot loading server source ( development mode )\n\t├── dist                        #  Compiled files\n\t├── .gitignore                  #  Ignored files from git commit\n\t├── server.js                   #  Express server to serve index.html and other assets\n\t├── LICENSE                     #  License to use the project\n\t├── package.json                #  Frontend and backend dependencies\n\t├── postcss.config.js \t\t#  PostCSS configuration\n\t├── Procfile\t\t\t#  Heroku procfile, for deployment\n\t├── README.md                   #  This file\n\t├── webpack.config.js           #  Webpack configuration for 'production' \n\t└── webpack.dev.config.js \t#  Webpack configuration for 'development' \n```\n\n## Quick Start\n### Just to check everything is working\n```\n# Install the dependencies\nnpm install\n\n# Build the client \nnpm run build:production\n\n# Start the project ( it will build the client, before starting the server )\nnpm start\n\n# Open web browser at http://localhost:8080\n# You will see a sample Single Page Application\n```\n\n## Development\n### Scaffold provides two npm scripts, execute both in seperate terminals\n```\t\n# Start client in development mode with hot code loading,\nnpm run start:development\n```\n\nHit frontend dev server to load application in the browser, enjoy developing :)\n\nRefer to the [react-hot-boilerplate](https://github.com/gaearon/react-hot-boilerplate) for further description.\n## Production\n### Scaffold provides two production scripts\n```\n# Build the client for production deployment\nnpm run build:production\n\n# Build the client for production deployment and start the backend server with 'forever' package\nnpm start \n```\nBackend server will start at http://localhost:8080 or the value provided in PORT environment variable, inside **forever** process and bundled frontend client will be served from the `dist` directory.\n\n## Known Limitations\n* Hot Reloading of the Routes ( Browser refresh is needed! ).\n\n## Feedback\nIn case of any query or feedback, please feel free to connect via\n* arpit.go4@gmail.com (Arpit Goyal)\n\nOr, open an issue at github.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farpitgo4%2Fbitcoin-wallet","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Farpitgo4%2Fbitcoin-wallet","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farpitgo4%2Fbitcoin-wallet/lists"}