Work on esbuild started at the start of 2020. It is primarily authored and maintained by Evan Wallace, who, in addition to making this tremendous contribution to the JavaScript ecosystem, is the CTO and co-founder of Figma . Incredible output.
Esbuild – An extremely fast JavaScript bundler
91–100 of 288 posts
Re: Esbuild – An extremely fast JavaScript bundler
#92Isn't the browser also an extremely fast Javscript bundler? How many scripts does a site need to make it feel faster when bundled? When I visit websites that are rendered serverside, they usually feel instant to me. Even when they load a dozen scripts or so.
Re: Esbuild – An extremely fast JavaScript bundler
#93Earlier quoted context omitted.
Practically, it isn't an issue if you use VSCode which has the Typescript language server built in to catch type errors for you. If you want, your build script can include `tsc -noEmit` to type check before the build.
Only if a project is pretty small. Change in one place, especially if it's a reusable code, might ruin code in multiple different places and IDE will not recompile the whole project on every change, it will only watch your currently opened files and, maybe, some files in opened folders.
Re: Esbuild – An extremely fast JavaScript bundler
#94How is it possible to be so fast?
It also doesn't include type checking for typescript. It just transpiles sources to javascript
If you use `@aws/sdk`, you are going to have bad time with Typescript. Resolving its types can easily take >50% of compilation time for small projects.
Re: Esbuild – An extremely fast JavaScript bundler
#95I'm using this to compile typescript lambda functions for AWS with great success. Combined with cdk and its NodeJsFunction you can even deploy/compile without local docker.
I looked at using ESbuild and I use Typescript. It was all looking good until reading the docs and it said ESbuild doesn't typecheck Typescript and to rely on your IDE to flag errors. Is that correct and how is that working for you practically if it is? The whole point for Typescript for me is to have a compiler typecheck my code and block errors at compile time. ESbuild not typechecking seemed like a major contradic…
Re: Esbuild – An extremely fast JavaScript bundler
#96What’s the catch? Do they really have a secret sauce or are there limitations in esbuild to achieve these speed ups?
Re: Esbuild – An extremely fast JavaScript bundler
#97What do you think of the importmap approach propagated by dhh on rails 7?
the only problem with this is that it's an option. As a rails dev, I want one, strong opinion on what the default/best approach is. I don't want to configure anything
Re: Esbuild – An extremely fast JavaScript bundler
#98We recently switched on a few of our project from Webpack and the difference is incredible. Running a watch using this is practically instantaneous compared to our previous setup. I've been recommending it to all my colleagues and we're replacing Webpack slowly but surely. The main draw for me is the simplicity of the config too. Webpack config (even using things like Symfony's Encore) is pretty convoluted and confus…
Re: Esbuild – An extremely fast JavaScript bundler
#99Great job on the landing page — that simple animation tells an incredibly simple and compelling story all in 800x200 pixels. I wish more products had landing pages that looked like that.
Re: Esbuild – An extremely fast JavaScript bundler
#100We recently switched on a few of our project from Webpack and the difference is incredible. Running a watch using this is practically instantaneous compared to our previous setup. I've been recommending it to all my colleagues and we're replacing Webpack slowly but surely. The main draw for me is the simplicity of the config too. Webpack config (even using things like Symfony's Encore) is pretty convoluted and confus…
Webpack is a bane of webdev existence. Having junior team encounter a webpack breakage === them spending as much time on tooling, as coding itself