A truffle box to serve as the foundation of any Truffle and Vue.js dApp. Comes with Vue.js, vue-router and Vuex.
Last updated Dec 9, 2025
71
Stars
17
Forks
3
Issues
0
Stars/day
Attention Score
37
Language breakdown
No language data available.
▸ Files
click to expand
README
Vue.js truffle box
A truffle box to serve as the foundation of any Truffle and Vue.js dApp. Comes with Vue.js, vue-router, Vuex and sass-loader. A minimalist user authentication smart contract is also provided.
Directory structure
This truffle box is crafted to enforce a clean directory structure.
/
|
+-- build/
| |
| +-- contracts/
| | |
| | + truffle compiled contracts
|
+-- config/
| |
| +-- babel/
| | |
| | + babel config files - to come (babel does not allow to specify a custom config file path - yet - so the babel configuration occurs in the package.json file for now)
| |
| +-- eslint/
| | |
| | + estlint config files
| |
| +-- postcss/
| | |
| | + postcss config files
| |
| +-- vue-loader
| | |
| | + vue-loader config files
| |
| +-- webpack/
| | |
| | + webpack config files
|
+-- contracts/
| |
| + solidity contracts
|
+-- migrations/
| |
| + truffle migrations files
|
+-- scripts/
| |
| + webpack scripts
|
+-- src/
| |
| + vue.js dapp files
|
+-- static/
| |
| + vue.js dapp static files
|
+-- test/
| |
| +-- e2e/
| | |
| | + e2e test files
| |
| +-- truffle/
| | |
| | + truffle test files
| |
| +-- unit/
| | |
| | + unit test files
Installation
- Install Truffle and an Ethereum client - like EthereumJS TestRPC.
npm install -g truffle // Version 3.0.5+ required.
npm install -g ethereumjs-testrpc
- Download this box.
truffle unbox wespr/truffle-vue
- Launch
testrpc.
testrpc <options>
- Compile and migrate the contracts.
truffle compile
truffle migrate
- Run the webpack server for front-end hot reloading. Smart contract changes do not support hot reloading for now.
npm run start
Tests
This box comes with everything bundled forunit, e2e and truffle contracts testing.
unitande2etests.
npm run test/dapp
trufflecontracts tests.
npm run test/truffle
- Alternatively you can directly run
unit,e2eandtrufflecontracts tests in one command.
npm run test
Build for production
To build the application for production, use the build command. A production build will be compiled in thedist folder.
npm run build
Issues
Please send any bug issues or proposal for improvement to Issues.
🔗 More in this category