museumsvictoria/nodel

`node_modules` can be excluded from listings

justparking opened this issue · 3 comments

When hosting node.js projects within nodel, the file listing often becomes cluttered with node_modules folders.

Example:
image

It should be entirely safe to exclude them from listing as they're generally all auto-generated and not to be touched anyway.

A new branch added. be5b592

Hey @morimoriysmoon - I know there's some nodel system file filtering done in the backend right where you made the change, but for this one I think it makes more sense to do it in the frontend.

I thought there was already some filtering being done there by looking at this list comparison showing _example.pysp excluded.

image

image

I believe it's by file extension but can you broaden it to specifically include some specific folders, in this case node_modules.

UI handles the exclusion.
6aea602