### Start Local Dev Server Source: https://github.com/rive-app/rive-react/blob/main/CONTRIBUTING.md Run this command to start the local development server and see changes reflected in the core `src/` files. ```bash npm run dev ``` -------------------------------- ### Run Example Storybook Locally Source: https://github.com/rive-app/rive-react/blob/main/CONTRIBUTING.md Use this command to run the Storybook environment locally, which hosts examples and code demonstrations. ```bash npm run storybook ``` -------------------------------- ### Commit Message Examples Source: https://github.com/rive-app/rive-react/blob/main/CONTRIBUTING.md Examples of descriptive commit messages for different types of changes, including bug fixes, documentation updates, and version bumps. ```bash git commit -m "Fix: Fixing a return type from useRive" ``` ```bash git commit -m "Docs: Adding a new link for another example page" ``` ```bash git commit -m "Major: Restructuring the useRive API with new parameters" ``` -------------------------------- ### Run Test Suite Source: https://github.com/rive-app/rive-react/blob/main/CONTRIBUTING.md Execute this command to run the suite of unit tests for the high-level component and exported hooks. ```bash npm test ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.