reactful
reactful copied to clipboard
An opinionated CLI for full-stack server-rendered React applications
The tool is great for react beginners (like me), but it can also cause lots of confusion when used in a subdirectory of an already existing git repo. When I...
Bumps [lodash](https://github.com/lodash/lodash) from 4.17.15 to 4.17.19. Release notes Sourced from lodash's releases. 4.17.16 Commits d7fbc52 Bump to v4.17.19 2e1c0f2 Add npm-package 1b6c282 Bump to v4.17.18 a370ac8 Bump to v4.17.17 1144918...
The scaffold code still used `ReactDOM.hydrate` which is deprecated in React 18, and needs to be replaced by something like: ```jsx const container =document.getElementById('mountNode'); const root = hydrateRoot(container, ); ```