Socket
Socket
Sign inDemoInstall

@esbuild/win32-ia32

Package Overview
Dependencies
Maintainers
2
Versions
85
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@esbuild/win32-ia32

The Windows 32-bit binary for esbuild, a JavaScript bundler.


Version published
Weekly downloads
5.3M
decreased by-3.76%
Maintainers
2
Weekly downloads
 
Created

What is @esbuild/win32-ia32?

The @esbuild/win32-ia32 npm package is a binary distribution of esbuild for Windows (32-bit) systems. Esbuild is an extremely fast JavaScript bundler and minifier. It compiles TypeScript and JavaScript into code that can run in the browser, and it can bundle many files into a single output file. It's designed to be very fast and efficient.

What are @esbuild/win32-ia32's main functionalities?

Bundling JavaScript

This feature allows you to bundle multiple JavaScript files into a single file, which can be useful for reducing the number of HTTP requests needed to load a web page.

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

Minifying JavaScript

This feature enables the minification of JavaScript code, which reduces file size by removing unnecessary characters without changing its functionality.

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

Transpiling TypeScript

This feature allows you to transpile TypeScript code into JavaScript, making it possible to use TypeScript's features while still targeting environments that only support JavaScript.

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

Other packages similar to @esbuild/win32-ia32

FAQs

Package last updated on 13 May 2023

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

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc