Socket
Socket
Sign inDemoInstall

@next/swc-win32-x64-msvc

Package Overview
Dependencies
0
Maintainers
5
Versions
1309
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @next/swc-win32-x64-msvc

This is the **x86_64-pc-windows-msvc** binary for `@next/swc`


Version published
Weekly downloads
1.9M
increased by3.05%
Maintainers
5
Created
Weekly downloads
 

Package description

What is @next/swc-win32-x64-msvc?

The @next/swc-win32-x64-msvc package is a precompiled binary of SWC (Speedy Web Compiler) specifically for Windows (win32) with x64 architecture using the MSVC (Microsoft Visual C++) compiler. SWC is a super-fast compiler written in Rust that allows for transforming ECMAScript 2015+ code into a backward-compatible version of JavaScript that can be run in older browsers. It's designed to be highly performant and is often used as a faster alternative to Babel.

What are @next/swc-win32-x64-msvc's main functionalities?

JavaScript/TypeScript Compilation

This feature allows for the compilation of JavaScript or TypeScript code into a version of JavaScript that is compatible with older browsers or environments. The code sample demonstrates how to use the package to compile TypeScript code into ES2015 JavaScript.

"use strict";
const swc = require('@next/swc-win32-x64-msvc');

async function compile(jsCode) {
  const result = await swc.transform(jsCode, {
    jsc: {
      parser: {
        syntax: 'typescript',
        tsx: false,
        decorators: false,
        dynamicImport: false
      },
      target: 'es2015'
    }
  });
  return result.code;
}

compile('let x: number = 123;').then(console.log);

Minification

This feature enables the minification of JavaScript code to reduce its size, making it more efficient to download and execute. The code sample shows how to minify a simple piece of JavaScript code.

"use strict";
const swc = require('@next/swc-win32-x64-msvc');

async function minify(jsCode) {
  const result = await swc.transform(jsCode, {
    minify: true
  });
  return result.code;
}

minify('const x = 1 + 2;').then(console.log);

Other packages similar to @next/swc-win32-x64-msvc

Readme

Source

@next/swc-win32-x64-msvc

This is the x86_64-pc-windows-msvc binary for @next/swc

FAQs

Last updated on 18 Apr 2024

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