Socket
Socket
Sign inDemoInstall

esbuild-linux-64

Package Overview
Dependencies
0
Maintainers
1
Versions
379
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

esbuild-linux-64

The Linux 64-bit binary for esbuild, a JavaScript bundler.


Version published
Maintainers
1
Weekly downloads
4,025,902
decreased by-7.21%

Weekly downloads

Package description

What is esbuild-linux-64?

The esbuild-linux-64 npm package is a fast JavaScript bundler and minifier specifically built for Linux x64 systems. It compiles JavaScript and TypeScript code to a smaller and more efficient output that can be executed in the browser or on a server. It is known for its speed and efficiency.

What are esbuild-linux-64's main functionalities?

Bundling

Combines multiple JavaScript files into a single file to reduce the number of server requests and improve load times.

require('esbuild').build({
  entryPoints: ['app.js'],
  bundle: true,
  outfile: 'out.js'
}).catch(() => process.exit(1))

Minification

Removes unnecessary characters from code without changing its functionality to reduce file size and improve performance.

require('esbuild').build({
  entryPoints: ['app.js'],
  minify: true,
  outfile: 'out.js'
}).catch(() => process.exit(1))

Transpiling

Converts modern JavaScript code into a backwards compatible version for older browsers or environments.

require('esbuild').build({
  entryPoints: ['app.js'],
  target: ['es2015'],
  outfile: 'out.js'
}).catch(() => process.exit(1))

Other packages similar to esbuild-linux-64

Readme

Source

esbuild

This is the Linux 64-bit binary for esbuild, a JavaScript bundler and minifier. See https://github.com/evanw/esbuild for details.

FAQs

Last updated on 30 Nov 2021

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc