esbuild

JavaScript bundler and minifier built for speed. More information: https://esbuild.github.io/.

esbuild --bundle path/to/file.js

esbuild --bundle --outfile=path/to/out.js < path/to/file.jsx

esbuild --bundle --define:process.env.NODE_ENV=\"production\" --minify --sourcemap path/to/file.js

esbuild --bundle --minify --sourcemap --target=chrome58,firefox57,safari11,edge16 path/to/file.jsx

esbuild --bundle --platform=node --target=node12 path/to/file.js

esbuild --bundle app.js --loader:.js=jsx path/to/file.js

esbuild --bundle --serve=port --outfile=index.js path/to/file.js

esbuild --bundle --outdir=path/to/output_directory path/to/file1 path/to/file2 ...