Giter VIP home page Giter VIP logo

Comments (5)

tdewolff avatar tdewolff commented on April 28, 2024 1

I've added a brief description of how to use the esbuild binary within minify here: https://github.com/tdewolff/minify#esbuild

Initial tests show that esbuild is quite fast! It is usually only 1.5x -- 2x slower than the basic (jsmin-like) implementation of the JS minifier in minify. With feature-parity they should be equally fast I expect. Nice work!

from esbuild.

evanw avatar evanw commented on April 28, 2024

Yes, it should be possible. Although esbuild is a bundler, it turns into a regular minifier if you pass --minify and not --bundle. So this is the way to minify a file with esbuild:

esbuild src/example.js --minify --outfile=dist/example.min.js

If you want to minify a lot of files at once, you can do something like this:

esbuild src/*.js --minify --outdir=dist

At this time, I'm not intending for the Go source code in this repo to be a library that other people can use. Go is more just an implementation detail of how I decided to build this tool. So while you can try to include this Go code in your project an call out to it directly, that workflow isn't supported and may break in the future. Calling out to the esbuild command is more stable and less likely to break. This may change in the future as this project matures, but right now esbuild is still working toward an MVP state and I don't want to be unable to make big internal changes to the structure of the project if needed.

from esbuild.

evanw avatar evanw commented on April 28, 2024

I'm going to close this since I also have very limited time at the moment, and am not interested in doing the work myself to integrate esbuild into tdewolff/minify. This work is probably better tracked by tdewolff/minify#18. That said, definitely feel free to keep asking questions here about how to minify using esbuild! I'm happy to continue answering questions.

from esbuild.

tdewolff avatar tdewolff commented on April 28, 2024

That's fine! Integration is actually fairly straightforward. I'll track this further in tdewolff/minify#18

from esbuild.

dkotik avatar dkotik commented on April 28, 2024

I am very impressed as well. Tried to put esbuild into my production pipe, but there would be too much rewriting. Going to have to hack around it. Why custom FS instead of http.FileSystem?

from esbuild.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.