All Projects → truffle-box → React Uport Box

truffle-box / React Uport Box

Licence: mit
Truffle, Webpack, React, Redux boilerplate with routing and authentication via a UPort.

Programming Languages

javascript
184084 projects - #8 most used programming language
solidity
1140 projects

Projects that are alternatives of or similar to React Uport Box

React Auth Box
Truffle, Webpack, React, Redux boilerplate with routing and authentication via a smart contract.
Stars: ✭ 172 (+73.74%)
Mutual labels:  ethereum, truffle, webpack
React Box
Truffle, Webpack and React boilerplate.
Stars: ✭ 516 (+421.21%)
Mutual labels:  ethereum, truffle, webpack
Disperse
React/Redux dApp (decentralized app) boilerplate using Ethereum's blockchain
Stars: ✭ 36 (-63.64%)
Mutual labels:  ethereum, truffle
Blockchain Learning
Learn and promote blockchain together by writing
Stars: ✭ 44 (-55.56%)
Mutual labels:  ethereum, truffle
Trace
Supply chain transparency platform proof-of-concept based on the Ethereum blockchain ✍️
Stars: ✭ 52 (-47.47%)
Mutual labels:  ethereum, truffle
Typechain
🔌 TypeScript bindings for Ethereum smart contracts
Stars: ✭ 769 (+676.77%)
Mutual labels:  ethereum, truffle
Eth.social
An Ethereum dApp for posting social events.
Stars: ✭ 17 (-82.83%)
Mutual labels:  ethereum, truffle
Nuxt Box
Truffle, Nuxt and Vue boilerplate
Stars: ✭ 46 (-53.54%)
Mutual labels:  ethereum, truffle
Eattheblocks
Source code for Eat The Blocks, a screencast for Ethereum Dapp Developers
Stars: ✭ 431 (+335.35%)
Mutual labels:  ethereum, truffle
Supply Chain
Supply chain management on blockchain using Angular 4 + Truffle + IPFS + Ethereum
Stars: ✭ 76 (-23.23%)
Mutual labels:  ethereum, truffle
Kin Token
Kin token contracts.
Stars: ✭ 60 (-39.39%)
Mutual labels:  ethereum, truffle
Etheno
Simplify Ethereum security analysis and testing
Stars: ✭ 77 (-22.22%)
Mutual labels:  ethereum, truffle
Ethermint Archive
Ethereum on Tendermint using Cosmos-SDK!
Stars: ✭ 667 (+573.74%)
Mutual labels:  ethereum, truffle
Dapp
TypeScript React Redux Ethereum IPFS Starter Kit
Stars: ✭ 33 (-66.67%)
Mutual labels:  ethereum, truffle
Defi Sdk
DeFi SDK Makes Money Lego Work
Stars: ✭ 440 (+344.44%)
Mutual labels:  ethereum, truffle
Transmute Framework
TypeScript dApp Framework
Stars: ✭ 45 (-54.55%)
Mutual labels:  ethereum, truffle
Rico
The Responsible Initial Coin Offering Framework
Stars: ✭ 83 (-16.16%)
Mutual labels:  ethereum, truffle
Augur Ui
Augur UI
Stars: ✭ 412 (+316.16%)
Mutual labels:  ethereum, webpack
Eth Crypto
Cryptographic javascript-functions for ethereum and tutorials to use them with web3js and solidity
Stars: ✭ 420 (+324.24%)
Mutual labels:  ethereum, truffle
Awesome Ethereum Cn
Web3.js、Solidity、Truffle开发教程及以太坊开发资源汇总
Stars: ✭ 54 (-45.45%)
Mutual labels:  ethereum, truffle

⚠️ No new changes will be made to this box! There's good news though: 🤘 the uPort team maintains an official uPort Connect Truffle Box!. We recommend using that instead.

React, Redux and UPort Authentication Truffle Box

In addition to Webpack and React, this box adds: react-router, redux and redux-auth-wrapper for authentication powered by UPort. The easiest way to get started with UPort.

Installation

  1. Install Truffle globally.

    npm install -g truffle
    
  2. Download the box. This also takes care of installing the necessary dependencies.

    truffle unbox react-uport
    
  3. Run the development console.

    truffle develop
    
  4. Compile and migrate the smart contracts. Note inside the development console we don't preface commands with truffle.

    compile
    migrate
    
  5. Run the webpack server for front-end hot reloading (outside the development console). Smart contract changes must be manually recompiled and migrated.

    // Serves the front-end on http://localhost:3000
    npm run start
    
  6. Truffle can run tests written in Solidity or JavaScript against your smart contracts. Note the command varies slightly if you're in or outside of the development console.

    // If inside the development console.
    test
    
    // If outside the development console..
    truffle test
    
  7. Jest is included for testing React components. Compile your contracts before running Jest, or you may receive some file not found errors.

    // Run Jest outside of the development console for front-end component tests.
    npm run test
    
  8. To build the application for production, use the build command. A production build will be in the build_webpack folder.

    npm run build
    

FAQ

  • How do I use this with the EthereumJS TestRPC?

    It's as easy as modifying the config file! Check out our documentation on adding network configurations.

  • Why is there both a truffle.js file and a truffle-config.js file?

    truffle-config.js is a copy of truffle.js for compatibility with Windows development environments. Feel free to it if it's irrelevant to your platform.

  • Where is my production build?

    The production build will be in the build_webpack folder. This is because Truffle outputs contract compilations to the build folder.

  • Where can I find more documentation?

    This box is a marriage of Truffle and a React setup created with create-react-app. Either one would be a great place to start!

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].