You-Dont-Need-Lodash-Underscore
just
You-Dont-Need-Lodash-Underscore | just | |
---|---|---|
25 | 13 | |
18,741 | 6,017 | |
0.4% | - | |
4.3 | 4.1 | |
2 months ago | 8 months ago | |
JavaScript | JavaScript | |
MIT License | MIT License |
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
You-Dont-Need-Lodash-Underscore
- What are some of the best libraries you cannot work without?
-
[AskJS] I love new javascript frameworks and libraries. What are some cool ones?
These are all really outdated tips. Moment is deprecated and it is recommended to use dayJs or date-fns. Lodash is discouraged because it has a huge bundle size and nowadays you will find native functions which do most of the things people have used lodash before. https://github.com/you-dont-need/You-Dont-Need-Lodash-Underscore
-
No Lodash
https://github.com/you-dont-need/You-Dont-Need-Lodash-Unders... seems to be a more readable alternative to this website.
- An NPM package that you love and a package that you hate
-
Migrate jQuery to VanillaJS - UpgradeJS.com
Adjacently useful is https://github.com/you-dont-need/You-Dont-Need-Lodash-Underscore
-
What are your favorite, must-have packages when you're creating a project?
I never used lodash but I found this. Might interest you.
- How to Use Lodash in Svelte?
- Help! I removed unused node modules packages and I optimized the imports but the bundle size does not changed
-
I once tried not to use date-fns
In one of my team's Pull Requests I noticed date-fns being added as dependency for our components library for one usage: transform a timestamp to "MM/yy" string, as it represented a debit card's expiration date. Inspired by You don't (may not) need lodash/underscore, I thought to myself - can't we just implement a 2-digit month and 2-digit year formatting? It looks simple, right?
-
Lodash
Yes and no. We did but are converting to in-house code since most Lodash functions are already available as native JS and/or @babel/preset-env + core-js@latest (see: You don't need Lodash).
just
-
Frontend resources! 🚀
Just: A library for common JavaScript utilities
-
🚀 The Fast, Accurate, JavaScript Objects Diffing & Patching Library
just-diff
-
TC39: Add Object.groupBy and Map.groupBy
You can roll your own or use a utility library. A simple zero-dependency library would be something like just-group-by [1]. Although I now prefer remeda [2] as it seems to have the best typescript support, especially the strict variants such as `grouBy.strict`.
[1] https://github.com/angus-c/just#just-group-by
-
No Lodash
Tree-shaking doesn't help much when the tree-shaken implementation is so bloated.
Here's the one you referenced, lodash.chunk: https://unpkg.com/lodash.chunk – 140 lines after removing comments and whitespace.
That's pretty small compared to a lot of the lodash utilities. Try spot-checking a few on unpkg.
I prefer angus's `just` utilities: https://github.com/angus-c/just
-
Snap.js - A competitor to Lodash
I absolutely love this. When I need some Lodash alternative I'll usually reference angus-c/just but I am definitely bookmarking this for next time.
- [AskJS] Which utility libraries are in your opinion so good they are basicaly mandatory?
-
[AskJS] Which JS libraries and packages are currently your favourites?
The just set of utility functions are really nice to use. https://github.com/angus-c/just
-
A Typescript-first alternative to Lodash/Underscore
Just doesn't have everything but it's pretty good
-
/svu - svultimate svelte svutilities
One of my favourite "libraries" are the "just" packages, where each part of the library is it's own simple package with zero dependencies (https://github.com/angus-c/just) so you essentially just npm install the specific thing you want - which is generally a single function.
-
What is the best memoization library?
If the code should, as you say, be 5 lines, why take on a dependency at all? By doing so, you end up with a catch-all solution that does almost nothing other than JSON.stringify your args, which is extremely poorly optimized to handle many situations, e.g. one of your args is a primitive and the other is a large config object.
What are some alternatives?
eslint-plugin-import - ESLint plugin with rules that help validate proper imports. [Moved to: https://github.com/import-js/eslint-plugin-import]
dom-examples - Code examples that accompany various MDN DOM and Web API documentation pages
eslint-plugin-svelte3 - An ESLint plugin for Svelte v3 components.
lodash - A modern JavaScript utility library delivering modularity, performance, & extras.
ramda - :ram: Practical functional Javascript
remeda - A utility library for JavaScript and TypeScript.
stdlib - ✨ Standard library for JavaScript and Node.js. ✨
svu - Svelte development, supercharged.
babel-plugin-lodash - Modular Lodash builds without the hassle.
yoha - A practical hand tracking engine.
eslint-plugin-no-unsanitized - Custom ESLint rule to disallows unsafe innerHTML, outerHTML, insertAdjacentHTML and alike
micro-memoize - A tiny, crazy fast memoization library for the 95% use-case