DEV Community

Cover image for Name a Front-end library that you cannot live without.
Sadeedpv🥇
Sadeedpv🥇

Posted on

Name a Front-end library that you cannot live without.

Latest comments (36)

Collapse
 
raguay profile image
Richard Guay

Svelte. I love using it. I can code without it, but it is much easier to use it.

Collapse
 
gnvageesh profile image
GNVageesh

Nextjs and TailwindCSS

Collapse
 
triptych profile image
Andrew Wooldridge

none

Collapse
 
prathmeshb profile image
प्रथमेश | Prathmesh 🌟

html

Collapse
 
andrewbaisden profile image
Andrew Baisden

React is where the job and money are for me.

Collapse
 
lockykeaney profile image
Locky Keaney • Edited

While I appreciate that having no library is the ultimate option (and the most fun in the end), it is often not the most time effective or efficient option. It is also does not answer the question that has been asked. OP might have been wanting some better ideas of libraries they want to replace in their next large project.

If it is a React project, then I would have to say Zustand. It makes creating state so much easier, and matches how hooks have become the new standard. I find the Context-Provider pattern in react confusing some times, and this hides it all from me.

Collapse
 
pontakornth profile image
Pontakorn Paesaeng

I don't have one. The closest thing is probably React. I can make a simple website without using any library but I would not do anything non-trivial without library.

Collapse
 
deepakydv9315 profile image
Info Comment hidden by post author - thread only accessible via permalink
Deepak Yadav

Why to use library ?? According to me we should know how to code without any library , coz we can't be dependent on libraries.
I agree libraries are also best option to code but we can't be so dependent

Collapse
 
sadeedpv profile image
Sadeedpv🥇 • Edited

So you never used react for your front-end project?

Collapse
 
yoquiale profile image
Info Comment hidden by post author - thread only accessible via permalink
Alex

Vue and Angular are frameworks, not libraries.

 
sadeedpv profile image
Sadeedpv🥇

That was my bad, sorry!

Collapse
 
deepakydv9315 profile image
Deepak Yadav

i am using react, but i can live without using it

Thread Thread
 
sadeedpv profile image
Sadeedpv🥇

Why do you use react if you don't like depending on libraries??

Thread Thread
 
ashkanmohammadi profile image
Info Comment hidden by post author - thread only accessible via permalink
Amohammadi2

console.log(using_a_library == depending_on_it); // false

 
deepakydv9315 profile image
Info Comment hidden by post author - thread only accessible via permalink
Deepak Yadav

😂💙✨

Collapse
 
yxsh profile image
Yash

idk about library but I cannot live without typescript

Collapse
 
abhinav1217 profile image
Abhinav Kulshreshtha

vanilla-js.com/

The fastest JS library there is.

Collapse
 
atinypixel profile image
Aziz Kaukawala

Definitely Lodash

I know javascript (typescript too) has evolved enough to eliminate use of such library but I'm using it for so long that now its my muscle memory to write _.find, _.filter, _.findIndex etc instead of using default array methods.

Collapse
 
jonrandy profile image
Jon Randy 🎖️ • Edited

If there is a front-end library you cannot live without, I would suggest your web development and JS skills are sorely in need of work

Collapse
 
eljayadobe profile image
Eljay-Adobe • Edited

I'm pretty keen on Vanilla JS. And it works great with TypeScript, which I also like a lot.

Collapse
 
fjones profile image
FJones • Edited

Gonna be the odd one out between the more-or-less-obvious "nothing should be crucial!" and the framework answers, and go with... emotion. CSS-in-JS is so goddamn easy with it, I genuinely wouldn't want to miss it, even on non-framework work. The other big one for me is pug/jade because I love the simplicity of abstracting HTML (in a very similar way to how I used to do it myself), but that's more nice-to-have than the universal utility that emotion provides for me.

Edit: To amend my pug answer: Nowadays, pug is awesome for HTML emails, because it just lets you freely generate the HTML regardless of the opinionated nature of other templating engines, and still lets you do the basic things you need. Email templates are awful, but abstracting them into basic inheritance and mixins? Godsend!

Collapse
 
alaindet profile image
Alain D'Ettorre

Although I've used many libraries and frameworks, the one I have to say Angular because it packs almost everything you'll ever need in a single framework while it can be integrated (ish) with anything written in JavaScript.

Some comments have been hidden by the post's author - find out more