You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 7-8.RSVP
Socket
Socket
Sign inDemoInstall

@esbuild/linux-arm64

Package Overview
Dependencies
Maintainers
0
Versions
84
Alerts
File Explorer

Advanced tools

Socket logo

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
6.1M
increased by1.32%
Maintainers
0
Created
Weekly downloads
 

Package description

What is @esbuild/linux-arm64?

The @esbuild/linux-arm64 npm package is a binary package for the esbuild bundler and minifier tool. It is specifically compiled for Linux systems running on ARM64 architecture. Esbuild is a fast JavaScript bundler and minifier that compiles TypeScript, JavaScript, and JSX files into a single file for use in web applications.

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

Bundling JavaScript files

This code sample demonstrates how to bundle multiple JavaScript files into a single file using esbuild.

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

Minifying JavaScript

This code sample shows how to minify a JavaScript file, reducing its size for production deployment.

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

Transpiling TypeScript

This code sample illustrates how to transpile TypeScript files into JavaScript using esbuild.

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

Transforming JSX

This code sample demonstrates how to transform JSX syntax into JavaScript, which is useful for React applications.

require('esbuild').build({
  entryPoints: ['app.jsx'],
  bundle: true,
  outfile: 'app.js',
  loader: { '.jsx': 'jsx' }
}).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

Package last updated on 02 Jul 2024

Did you know?

Socket

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
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc