Scaffold a Dash Platform (Evolution) starter app in seconds.
npm create evo-app@latest my-app
# or
npx create-evo-app my-appThen:
cd my-app
npm install
# Get a funded testnet identity + a ready .env at https://evotools.dev/onboard
cp .env.example .env # paste your EVO_* values
npm run check # read-only: connect + show your identity
npm start # publish a contract + create a document (needs funds)A tiny, dependency-light Node ESM project wired to @dashevo/evo-sdk v4:
src/sdk.js— connect to testnet (swap tomainnetTrusted()for mainnet).src/check.js— read your identity (balance, DPNS name, keys). No funds needed.src/index.js— the write path: publish a data contract, create a document, query it back..env.example— matches the.envthat evotools Onboard hands you.
It embodies the real v4 patterns (object-based Document/DataContract +
IdentitySigner, the CRITICAL auth key for writes). For every other operation,
see the evo-cookbook.
Part of evotools. MIT.