What makes a package useless, or “When should I reinvent the wheel”?

This is a response to a couple of comments in the discussion below this article:

10 useless NPM Package with millions of downloads
Jyotishman Saikia ・ Aug 22 ・ 2 min read

#javascript

This is a response to a couple of comments in the discussion below this article:

@ansile
wrote:

array-includes is a polyfill, first published 7 years ago.
array-flatten is kinda the same. It’s not a polyfill, in a technical sense, but Array.prototype.flat is a new feature and the package pre-dates it.

Arguably, that makes array-flatten “useless” for new projects, because it’s better to polyfill a standard API, as you can remove the dependency later on if you stop supporting legacy browsers. You can’t do this if you’re using a non-standard API.

Of course, that doesn’t mean the package was useless when it was written, nor even that older projects should instantly switch to the standard API. Any such change requires some amount of additional work, so there’s a trade-off between rework and technical debt.

ismobilejs is a device os/type/etc detector. Some apps definitely need that.

And store2 is a wrapper with a huge amount of features, some convenience-based (e.g. modifying currently stored value instead of manually doing get+set), and some unique (e.g. checking how many space is left).

Difficult to argue with either of these. Both of these packages fulfill usefull purposes, and reinventing the wheel here not only takes additional work but also won’t be as well battle-tested as a public, open-source package with thousands of GitHub stars.

The main reasons not to use these would be:

  1. Preference for a different package that covers the same use case. For example, instead of a wrapper for the somewhat outdated localStorage and sessionStorage APIs such as store2, you could use the excellent idb-keyval, which wraps the IndexedDB API instead, giving significant performance and other advantages.

  2. Reduce bundle size by using a custom yet very simple, small, yet hacky alternative. For example, maybe you don’t need all of ismobilejs‘s features. Per MDN’s recommendation, if you simply need to know whether a UA is mobile and don’t care about other details, you can get a pretty damn good approximation with just 1 line:

export const isMobile = navigator.userAgent.includes('Mobi')

Meanwhile, @mcmath
argues:

I’m going to go out on a limb and say that none of these are useless. Take upper-case, for example. I imagine it’s supposed to be useless because we already have toUpperCase(). But sometimes we want to do this:

 let upperCaseStrings =
   lowerCaseStrings.map(upperCase);

… Yes, it’s easy to implement yourself. In fact, I have (many times). Maybe I’ll download upper-case next time instead.

I’d argue that importing the upper-case package for this purpose would be a huge mistake and lead to increased tech debt for virtually no benefit. For extremely simple features such as this, even if you frequently need a map-able version, it’d be much better to have a custom file somewhere in your own codebase, rather than an external dependency. Perhaps it’d be called something like /src/utils/string-formats.ts and look something like this:

export const upperCase = (str: string) => str.toUpperCase()
export const lowerCase = (str: string) => str.toLowerCase()
// ...

Importing an external package for such simple features would be a mistake, for a few reasons:

  1. Many developers will assume the package is doing something special and unique, rather than just calling String#toUpperCase(). They’ll end up wasting time poring over GitHub repos, trying to figure out why someone has bothered to include this package as a dependency.

  2. Meanwhile, other developers will just ignore it and treat the package as a “black box”. They won’t be quite certain what it does, but they’ll assume it does something vaguely similar to String#toUpperCase(). Instead of a standardized, tried-and-tested, well-known, painstakingly specified, well-documented API, they’ll be left wondering. Does it work on Greek or Cyrillic text? Is it locale-sensitive, and if so, does that mean it may have different results in different user agents? Is calling upperCase(lowerCase(upperCase(str))) always identical to calling upperCase(str) for every possible value of str? Who freakin’ knows!

  3. Breaking changes might be introduced to the package, which would never (or very rarely) happen with native web platform features. In general, you want to keep packages up to date, for security reasons if nothing else; but you also don’t want your project to break thanks to the updates.

In general, I’d suggest the following heuristics in determining when to use a third-party package or when to “reinvent the wheel”:

  • Can I implement the feature myself trivially and reliably?

  • How well is this functionality supported by existing Web (or Node) APIs?

  • Will updates to this package typically be an advantage or a disadvantage?

  • Is this a critical part of the app for which I want to be sure the solution is robust and battle-tested?

  • Does the benefit the package brings justify the increased bundle size?

Would you agree with these heuristics? What other ones would you add/remove?


Print Share Comment Cite Upload Translate
APA
lionel-rowe | Sciencx (2024-03-28T10:11:51+00:00) » What makes a package useless, or “When should I reinvent the wheel”?. Retrieved from https://www.scien.cx/2021/08/23/what-makes-a-package-useless-or-when-should-i-reinvent-the-wheel/.
MLA
" » What makes a package useless, or “When should I reinvent the wheel”?." lionel-rowe | Sciencx - Monday August 23, 2021, https://www.scien.cx/2021/08/23/what-makes-a-package-useless-or-when-should-i-reinvent-the-wheel/
HARVARD
lionel-rowe | Sciencx Monday August 23, 2021 » What makes a package useless, or “When should I reinvent the wheel”?., viewed 2024-03-28T10:11:51+00:00,<https://www.scien.cx/2021/08/23/what-makes-a-package-useless-or-when-should-i-reinvent-the-wheel/>
VANCOUVER
lionel-rowe | Sciencx - » What makes a package useless, or “When should I reinvent the wheel”?. [Internet]. [Accessed 2024-03-28T10:11:51+00:00]. Available from: https://www.scien.cx/2021/08/23/what-makes-a-package-useless-or-when-should-i-reinvent-the-wheel/
CHICAGO
" » What makes a package useless, or “When should I reinvent the wheel”?." lionel-rowe | Sciencx - Accessed 2024-03-28T10:11:51+00:00. https://www.scien.cx/2021/08/23/what-makes-a-package-useless-or-when-should-i-reinvent-the-wheel/
IEEE
" » What makes a package useless, or “When should I reinvent the wheel”?." lionel-rowe | Sciencx [Online]. Available: https://www.scien.cx/2021/08/23/what-makes-a-package-useless-or-when-should-i-reinvent-the-wheel/. [Accessed: 2024-03-28T10:11:51+00:00]
rf:citation
» What makes a package useless, or “When should I reinvent the wheel”? | lionel-rowe | Sciencx | https://www.scien.cx/2021/08/23/what-makes-a-package-useless-or-when-should-i-reinvent-the-wheel/ | 2024-03-28T10:11:51+00:00
https://github.com/addpipe/simple-recorderjs-demo