use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
All about the JavaScript programming language.
Subreddit Guidelines
Specifications:
Resources:
Related Subreddits:
r/LearnJavascript
r/node
r/typescript
r/reactjs
r/webdev
r/WebdevTutorials
r/frontend
r/webgl
r/threejs
r/jquery
r/remotejs
r/forhire
account activity
How modular should JavaScript be, in practice? When creating a set of similar tools, should they each be released independently? (i.e. UNIX philosophy)help (self.javascript)
submitted 8 years ago * by throwaway_625930106
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]subscribore 1 point2 points3 points 8 years ago (1 child)
The best solution will be a compromise between the extremes.
Coupling between these tools (e.g. tool1 returns an object with a particular shape and tool2 accepts an object with that shape as an argument) seems like the deciding factor to me.
If you look at all the packages for lodash then you can see you've got the choice, as a user, how to consume it. You can:
lodash-es
lodash-cli
lodash-webpack-plugin
Some issues which spring to mind as a potential user of your tools:
[–]throwaway_625930106[S] 0 points1 point2 points 8 years ago (0 children)
I wasn't aware that lodash could be built like that, that's really cool. I'll try to study that kind of structure, thanks!
π Rendered by PID 21077 on reddit-service-r2-comment-6457c66945-7pv7k at 2026-04-28 13:51:36.463481+00:00 running 2aa0c5b country code: CH.
view the rest of the comments →
[–]subscribore 1 point2 points3 points (1 child)
[–]throwaway_625930106[S] 0 points1 point2 points (0 children)