Today we're proud to announce the addition of a new product to the Truffle Suite: Drizzle. Drizzle is a collection of front-end libraries that make writing dapp front-ends easier and more predictable.
The core is based on a Redux store. We take care of synchronizing your contract data, transaction data and more. Things stay fast because you declare what to keep in sync. Importantly, this means you have access to the spectacular development tools around Redux. Want to time travel through your recent transactions? You can do that with a slider.
drizzle
module itself. If you're familiar with Redux, it's not a stretch to create an Angular library or use it for something other than a webapp.
truffle unbox drizzle
and you've got a full example dapp. Need more info? Read on!
The core library responsible for web3, account and contract instantiation; wiring up the necessary synchronizations and providing additional contract functionality.
Provides a DrizzleProvider component and drizzleConnect helper method to make it easier to connect Drizzle with your React app.
A library of useful components for common dapp functions. Currently includes:
LoadingContainer
: Wraps your app, ensuring it waits for web3 and contract instantiation and displays relevant feedback if something goes wrong.ContractData
: Displays contract call output.ContractForm
: Automatically generates a form for contract transactions.Shown in the video above, this box makes use of all of Drizzle's libraries in a finished example dapp.
Help us grow this baby! What do you want to see from Drizzle? More components? More options? To put it another way: what are you sick of doing on the front-end?
We're excited to hear your feedback and can't wait to see what you'll build!
-- Josh & the Truffle Team