Echo JS 0.11.0

<~>

tracker1 2706 days ago. link 1 point
Sorry, but I prefer feature based structure... dividing by file type only makes it harder to work on a given feature as you're scrolling across your project looking for the different parts.
varya 2706 days ago. link 1 point
Could you give example? Or describe here.
tracker1 2705 days ago. link 1 point
You can start here:

    http://marmelab.com/blog/2015/12/17/react-directory-structure.html

I may go multiple levels deep, but in essence it's about keeping structure based on the feature/section you're working on.  Not every feature will contain controls and/or other models.  Some may be one or the other.

In this way, you are less likely to need to scroll back and forth to keep your smart and dumb components and/or reducers etc in your project, as related items should be in proximity.

The same goes for tests... the .(test|spec).js file should be right next to the .js file...  It serves nobody to have to trek through several layers of identical directory structure to get to them.