Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
April 11, 2022 07:09 pm GMT

The Absolute Best JS Dev Tools in 2022

A breakdown of the most important JS dev tools in 2022, including their most relevant tradeoffs, and some opinionated advice sprinkled on top.

In the world of software engineering, its important to have a firm understanding of the tools at your disposal.

But the landscape of JS tooling is always changing at such a rapid pace.

And 2022 is no different.

So I decided to break down the most important dev tools that you should be aware of in 2022.

Well start with the lowest-level tools and work our way up to higher-level tools from there. Lets get started

Compilers

Compilers are responsible for transforming your input code into some target output format. For our purposes, were focusing on compilers which support transpiling modern JavaScript and TypeScript into specific versions of ECMAscript that are compatible with browsers and recent versions of Node.js.

Compilers

The most important thing to understand about this space is that its in the middle of undergoing a massive shift from compilers like tsc and babel, which are written in higher-level interpreted languages, to compilers like swc and esbuild, which are written in much faster, compiled languages.

This shift results in 10-100x faster compilation times as shown in this esbuild demo.

esbuild

If youre updating your devtools stack or starting a new project in 2022, then youll want to consider using one of these next-gen compilers under the hood. They may not be as mature as the official typescript compiler or babel, but the benefits of having 100x faster builds cannot be understated.

Note that neither swc nor esbuild perform type checking. They simply transpile code into the desired output format as quickly and efficiently as possible. For the time being, if youre working with TypeScript, youll almost always need to have the official TypeScript compiler as part of your toolchain to guarantee that youre getting the most out of TypeScripts static type checking. Its also worth mentioning that the author of swc, kdy1dev is working on porting tsc to Go in order to remove the need for tsc in many cases, as it tends to be the bottleneck in most toolchains.

SWC vs esbuild

swc and esbuild are both excellent, blazing fast, open source JS / TS compilers. They have comparable performance and are both used regularly in production by some of the worlds largest companies.

Its likely that your choice between the two will be dictated more by the higher-level tools built on top of these compilers as opposed to choosing between them directly.

Notable projects using swc:

Notable projects using esbuild:

In software engineering, convenient statements such as technology A is better than technology B rarely hold much value. Rather, you should try to always keep context in mind. In this case, there are many scenarios where youd be better off using tsc or babel.

Becoming a better software engineer often boils down to thoroughly understanding the tradeoffs involved with these types of decisions, and balancing those tradeoffs against the particular constraints of your project, team, and business needs.

Bundlers

Webpack

Bundlers are responsible for taking all of your input source files and bundling them together into an easy-to-consume output format. The two most common use cases for bundlers are bundling libraries and bundling resources for web applications.

Bundlers

Bundlers like webpack and rollup are the swiss-army knives of modern JS toolchains. They are both extremely extensible, with well-maintained plugins covering major use cases. Its relatively straightforward, for example, to use any of the popular compilers listed above to transpile TS code with either webpack or rollup.

Parcel, on the other hand, provides a mostly zero-config approach to bundling. It focuses on simplicity as opposed to extensibility and uses swc as a compiler under the hood.

Note that swc and esbuild both provide basic bundling capabilities as well, though compared with these alternatives, theyre not full-featured enough to be included on this list.

For a much more detailed comparison of these bundlers, check out tooling.report.

Package Managers

Package managers are responsible for managing dependencies in the form of NPM packages.

Package managers

Theres a lot of history here, but the TL;DR is:

  • All of these package managers have similar features and perf nowadays, so dont be too worried about which one youre using.
  • pnpm seems to be gaining a lot of traction very quickly.
  • The way yarn berry was rolled out and the subsequent deprecation of yarn v1 turned a lot of people off from using yarn, though yarn berry has come a long way in the past few years.
  • yarn plugnplay is an interesting approach, but in practice, it has only seen adoption in cases with very large monorepos.
    • I cant tell you the number of times Ive wanted to inspect or add console.log statements to my node_modules, and not being able to do so is a real disadvantage.

Adoption by popular projects

Package manager adoption
^ A breakdown of the package managers chosen by popular projects. This image is from Sebastian Webers excellent package manager deep dive. Note that at the time of this writing, none of these projects are using Yarn PnP.

Library Development

These tools are meant to help library authors bundle and publish modern NPM packages.

Library development tools

If youre developing a new library in 2022, youll likely want to use one of these higher-level tools to simplify your workflow.

  • If you have a TS package and want to take advantage of extremely fast build times courtesy of esbuild, then tsup is a great option.
  • If you have a TS package and need some additional features, then tsdx is a great option.
  • If you have a TS or JS package, then microbundle is also a great option.
  • Vite is mainly a tool for building frontend web apps, but it also includes support for outputting libraries and is a very solid all-around option.
  • For monorepos, nx looks really promising.

My personal preference will be to use tsup for TS packages, mainly because once youve experienced 100x faster builds, its really difficult to consider switching back to anything else.

More Info

Most of these tools dont currently provide great support for TS monorepos which take advantage of composite project references. For the time being, my recommendation for this case is to use tsc for type checking and generating .d.ts typings (with emitDeclarationOnly: true) and tsup for compiling code in each of the sub-packages. For an example of this approach, check out the react-notion-x monorepo (one of my OSS projects).

Publishing modern NPM packages is a nuanced topic that goes well beyond the scope of this article. For more info on ESM, commonjs, dual-package publishing, exports, and more see:

Web App Development

These higher-level tools and frameworks are intended to help developers build modern web applications without worrying about all the details.

Web app development tools and frameworks

If youre developing a new web app in 2022 using React, then I would highly recommend using Next.js. It has the best support, the most active community, and close integration with Vercel, the worlds leading deployment platform for modern web apps.

Remix provides a really compelling alternative to Next.js. Its from the makers of react-router, and though its relatively new, theyre definitely a framework to keep an eye on.

If youre developing a new web app using Vue, then Nuxt.js and Vite are both great options.

And last, but certainly not least, if you want something more light-weight, then give Parcel a try.

There seems to be a roughly equal number of projects building on top of swc and esbuild. The same observation goes for webpack and rollup.

Conclusion

Modern web development has evolved significantly over the past 10 years. Developers today are lucky to have such a wide range of amazing, well-maintained tools to choose from.

This is, however, by no means a comprehensive list of dev tools. If theres something missing that youd like to see added, let me know on twitter.

Hopefully this breakdown has helped you parse the most important aspects of the current JS / TS dev tools landscape, and hopefully itll help you to make more informed decisions going forwards.

If you found this article helpful, then consider following me on twitter for more @transitive_bs


Original Link: https://dev.to/transitivebullshit/the-absolute-best-js-dev-tools-in-2022-33ij

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To