Socket
Socket
Sign inDemoInstall

esbuild-linux-arm64

Package Overview
Dependencies
0
Maintainers
1
Versions
318
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    esbuild-linux-arm64

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


Version published
Weekly downloads
1.1M
decreased by-5.31%
Maintainers
1
Created
Weekly downloads
 

Package description

What is esbuild-linux-arm64?

The esbuild-linux-arm64 package is a high-performance JavaScript bundler and minifier specifically built for the ARM64 architecture on Linux. It is designed to be extremely fast and efficient, making it ideal for modern web development workflows.

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

Bundling

This feature allows you to bundle multiple JavaScript files into a single file. The code sample demonstrates how to bundle an entry file 'src/index.js' into an output file 'dist/bundle.js'.

const esbuild = require('esbuild');

esbuild.build({
  entryPoints: ['src/index.js'],
  bundle: true,
  outfile: 'dist/bundle.js',
}).catch(() => process.exit(1));

Minification

This feature allows you to minify JavaScript files to reduce their size. The code sample shows how to minify an entry file 'src/index.js' and output it as 'dist/bundle.min.js'.

const esbuild = require('esbuild');

esbuild.build({
  entryPoints: ['src/index.js'],
  minify: true,
  outfile: 'dist/bundle.min.js',
}).catch(() => process.exit(1));

TypeScript Support

This feature allows you to bundle TypeScript files. The code sample demonstrates how to bundle a TypeScript entry file 'src/index.ts' into an output file 'dist/bundle.js'.

const esbuild = require('esbuild');

esbuild.build({
  entryPoints: ['src/index.ts'],
  bundle: true,
  outfile: 'dist/bundle.js',
  loader: { '.ts': 'ts' },
}).catch(() => process.exit(1));

CSS Bundling

This feature allows you to bundle CSS files. The code sample shows how to bundle a CSS entry file 'src/styles.css' into an output file 'dist/styles.css'.

const esbuild = require('esbuild');

esbuild.build({
  entryPoints: ['src/styles.css'],
  bundle: true,
  outfile: 'dist/styles.css',
}).catch(() => process.exit(1));

Other packages similar to esbuild-linux-arm64

Readme

Source

esbuild

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

FAQs

Last updated on 30 Aug 2022

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