-
-
Notifications
You must be signed in to change notification settings - Fork 433
Drop chokidar #364
Comments
If there's anything you run into while trying to use cheap-watch, let me know! Probably the main weirdness with it is that you need to specify the files to watch via a function that inputs a path and outputs a boolean, but that's probably not a huge setback with Sapper's usage of file system watchers. |
Another thing I guess is that cheap-watch async/await and so needs Node 8. I don't know what the desired target for Sapper is. |
The filter function is great, makes it straightforward to ignore 'private' directories e.g. I think the Node 8 thing is probably ok, since it's only used in dev mode. If people are still developing in Node 6 (as opposed to deploying to Lambda or whatever) then it's self-inflicted. |
Released 0.17. Think it's time for a quick retrospective — these are the sizes of node_modules if you install nothing but Sapper to a fresh project: 0.15 — 22.2Mb0.16 — 15.1Mb0.17 — 4.3Mb(html-minifier isn't Rollup-friendly, it turns out. Oh well. Also, I've been thinking that source-map-support probably shouldn't be installed by default; will open a separate issue for that. tslib needs to be installed as a dependency rather than a dev dependency otherwise you get red squigglies; if we ditch Node 6 support, we can change the compilation target and that will no longer be the case.) Now we just need to get the rest of the JS ecosystem on board. |
Super cool! I only have one hesitation. In the case of Sapper it doesn't matter much, due to the application context/targeting, but not sure how I feel about getting rest of the ecosystem on board. All these deps are still included in Sapper, but they're now inlined (which is amazing for boot time & true code usage) but now any other peer dependencies in a project that may be using some of the same libs will result in duplicate code .. and potentially a lot of it. Even if other library authors got on board and inlined, you'd still wind up with duplicate (partial) dependencies which are no longer identifiable & so cannot be tree shaken further. I think the short term fix, on an ecosystem level, is to choose packages with shallow trees behind them. In the long term, we need a better install tool and registry to cut down on our network costs per project. Then, we need a single, dependency-wide Rollup/bundler that builds out the project with treeshaking & co. Libraries ship with dependencies attached, for identity (and possible, automatic inlining at application level) whereas applications build for production by default as they're not to be further consumed. Basically, I've just described Rust's Cargo and I think it's totally feasible. |
By 'getting everyone on board' I was more thinking about persuading developers to reject silly dependencies, which would take a combination of a) more in-your-face tooling, b) education and c) providing alternatives (which no-one is doing more of than you!). But the question of when to bundle and when not to is interesting, so allow me to ramble for a bit: In theory I agree. In practice, I very often find that the potential for deduplication is highly overstated — partly because different packages only occasionally have overlapping functionality within the same app, partly because different authors favour different dependencies, and partly because the JS community is somewhat undisciplined about keeping versions up to date. I'll pick on micromatch one more time because it's a good example. There are 83 nodes in its dependency graph, 4 of which are different versions of kind-of — even though kind-of and many of the packages that directly depend on it (some of which are also duplicated within that graph) are written by the author of micromatch! When you're talking about first-order dependencies by different authors, it generally gets worse. I don't think there's a hard and fast rule about when it makes sense to bundle and when it doesn't, but the heuristic I go by is something like this:
It's also a question of what you're optimising for. In Sapper's case I'm less concerned about avoiding overlapping dependencies with (say) webpack than I am with bringing startup time to the absolute minimum, since a production Sapper app doesn't depend on webpack. I don't think we need worry about dev time duplication. So, yeah. If the ecosystem wasn't such a mess (i.e. packages with ridiculously deep dependency trees weren't more or less unavoidable) I would be entirely on board with that plan. Until then I think judicious bundling is a sensible workaround. As a final exhibit, let me just leave this here...
|
would be neat to crawl npm, grab packages with most dependants/dependencies, generate the graphviz trees and auto-send an email to the authors with the graphic and describing the problem. or auto-open github issues. it just might work. |
@Rich-Harris Completely agree, 100% 👍 Again, wasn't picking on Sapper at all as I think the choice here makes perfect sense. One day, I'd like to see (or make) that Cargo for JS. I do think it can solve these problems for us, even the version mismatching n-levels deep. I also like @leeoniya's idea (👋) about automatic PRs for outdated dependencies that wouldn't naturally resolve to the latest version of XYZ deps, either by pinned versions or wrong majors. |
See #363.
I had resigned myself to keeping chokidar, even though it accounts for most of Sapper's size, on the basis that since webpack also uses it, any user of Sapper is going to have to install it anyway.
But that's not entirely accurate. webpack is a dev dependency, whereas Sapper is a main dependency. That means that if Sapper dropped chokidar, a production Sapper app wouldn't depend on it. That would be great in e.g. serverless environments.
So maybe we should try cheap-watch instead after all? All we're doing is seeing if files get added/removed in
routes
in dev mode.The text was updated successfully, but these errors were encountered: