1. @pika/plugin-bundle-node
A @pika/pack plugin: Adds a bundled Node.js distribution to your package.
@pika/plugin-bundle-node
Package: @pika/plugin-bundle-node
Created by: pikapkg
Last modified: Wed, 06 Apr 2022 14:30:48 GMT
Version: 0.9.2
License: MIT
Downloads: 6
Repository: https://github.com/pikapkg/builders

Install

npm install @pika/plugin-bundle-node
yarn add @pika/plugin-bundle-node

@pika/plugin-bundle-node

A @pika/pack build plugin.
Adds a bundled Node.js distribution to your package, built & optimized to run on Node.js with all dependencies included. Useful for reducing the install time for CLIs.

Install

 # npm:
npm install @pika/plugin-bundle-node --save-dev
# yarn:
yarn add @pika/plugin-bundle-node --dev

Usage

 {
  "name": "example-package-json",
  "version": "1.0.0",
  "@pika/pack": {
    "pipeline": [
      ["@pika/plugin-standard-pkg"],
      ["@pika/plugin-build-node"],
      ["@pika/plugin-bundle-node"]
    ]
  }
}

For more information about @pika/pack & help getting started, check out the main project repo.

Options

  • "sourcemap" (Default: "true"): Adds a source map for this build.
  • "minNodeVersion" (Default: "8"): This plugin will bundle your package for the current minimum Node.js LTS major version. This option allows you to target later versions of Node.js only.

Result

  1. Adds a bundled Node.js distribution to your built package: dist-node/index.bundled.js
  2. Common.js (CJS) Module Syntax.
  3. All dependencies included in this file.

Note that this does not add or modify the "main" entrypoint to your package.json. See @pika/plugin-simple-bin for an example of how to automatically point to this bundled build.

RELATED POST

10 Must-Know Windows Shortcuts That Will Save You Time

10 Must-Know Windows Shortcuts That Will Save You Time

Arrays vs Linked Lists: Which is Better for Memory Management in Data Structures?

Arrays vs Linked Lists: Which is Better for Memory Management in Data Structures?

Navigating AWS Networking: Essential Hacks for Smooth Operation

Navigating AWS Networking: Essential Hacks for Smooth Operation

Achieving Stunning Visuals with Unity's Global Illumination

Achieving Stunning Visuals with Unity's Global Illumination

Nim's Hidden Gems: Lesser-known Features for Writing Efficient Code

Nim's Hidden Gems: Lesser-known Features for Writing Efficient Code