Build - Run - Test - Deploy
npm install -g truffle
# Install
npm install -g ethereumjs-testrpc
# Run
testrpc
truffle init
truffle compile --all
truffle migrate --reset
This will use
testrpc
insidetruffle
port9545
# To getting in
truffle develop
# To getting out
.exit
# To getting in
truffle console
# To getting out
.exit
SimpleStorage example with getter/setter and simple test Source : https://github.com/katopz/truffle-simple-storage-example