Nanostores with redwood

Nanostores - tiny lib for state management++ purposes, seems very promising tool and i’m trying to make use of it to keep some data on frontend.
The problem seem to be installation, yarn add nanostores - which i did. But, seemingly it breaks something down the road and the app starts behaving strangely…
Did anyone have some experience using it in fullstack RW project, or should it be installed inside the frontend (/web ) dir …?

Yes it should be installed in the web package because it is a web side dependency.

When installing dependencies in redwood you use these commands because redwood uses yarn workspaces

yarn workspace web add nanostores
yarn workspace api add api-package

More info can be found here