Doggy Walkie ethereum smart contract
You should have node.js installed. After
that use npm to install packages mentioned in package.json.
npm installThis pulls in dependencies of our DoggyWalkie smart-contract,
truffle development tool, and stores them in local node_modules
directory, which is a standard way to install stuff for JavaScript
development.
npx truffle testnpm can install binaries if they come with a package. npx is used
to find and execute such binaries. npm also provides npm run
command, but this one executes commands by names listed in
package.json scripts section.
Running tests with configured npm scripts command.
npm run testThere is also as special shortcut that does the same thing for the
test section.
npm testnpm run compileCompiled asset will be available on 'build' folder.