pandonetwork
truffle-vue
JavaScript

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

npm install -g truffle // Version 3.0.5+ required.
	npm install -g ethereumjs-testrpc
  • Download this box.
truffle unbox wespr/truffle-vue
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 for unit, e2e and truffle contracts testing.
  • unit and e2e tests.
npm run test/dapp
  • truffle contracts tests.
npm run test/truffle
  • Alternatively you can directly run unit, e2e and truffle contracts 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 the dist folder.
npm run build

Issues

Please send any bug issues or proposal for improvement to Issues.

© 2026 GitRepoTrend · pandonetwork/truffle-vue · Updated daily from GitHub