DEV Community

Discussion on: NPM libraries: which are the good ones?

Collapse
 
adam_cyclones profile image
Adam Crockett πŸŒ€

You can't go shopping without knowing what you want to buy in much the same way you can't use packages without knowing the problem. And here's how to choose the library.

I want to write a to-do list.

  1. Do I need a library If yes, what problem am I solving.
  2. Is this library solving my problem
  3. Is the code style matching my stack, eg is typescript well supported, could you live without support?
  4. Is the library maintained and regularly
  5. Is the library full of security issues flagged by npm
  6. Does the library use as few dependencies as possible to prevent headaches when managing other dependencies.
Collapse
 
jmfayard profile image
Jean-Michel πŸ•΅πŸ»β€β™‚οΈ Fayard

makes sense, thanks!