Research
Security News
Threat Actor Exposes Playbook for Exploiting npm to Build Blockchain-Powered Botnets
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
@pika/pack
Advanced tools
Authoring JavaScript used to be simple: Write JavaScript and hit `npm publish`.
@pika/pack • A simple, holistic approach to package building & publishing.
Authoring JavaScript used to be simple: Write JavaScript and hit npm publish
.
Today things are more complicated: Modern JavaScript (and TypeScript, and Flow, and Reason, and...) no longer runs everywhere. To get around this, libraries ship legacy code for Node.js alongside modern code for web bundlers, type definitions for TypeScript/VSCode users, bundled code for UNPKG/CDNs, and more.
Of course it's up to you as the package author to figure all of this out on your own.
@pika/pack tries to solve this problem differently:
package.json
entrypoints (like "main"
and "module"
) automatically.The result is a self-contained, ready-to-run pkg/
dir, optimized and small by default (so no more "files"
or .npmignore
configuration to worry about when you decide to publish).
npm install --global @pika/pack
To use @pika/pack, define a build "pipeline"
in your source project's package.json
manifest (similar to the "plugins" section of a .babelrc
file):
/* Project package.json */
{
"name": "simple-package",
"version": "1.0.0",
"@pika/pack": {
// Define the pipeline that will build your package:
"pipeline": [
// 1. Compiles your source to standard ES2018+
["@pika/plugin-standard-pkg", {"exclude": ["__tests__/*"]}],
// 2. Creates a distribution to run on Node.js
["@pika/node-builder"],
// 3. Creates a distribution to run on web browsers (optimized for bundlers)
["@pika/web-builder"],
// 4. Generates type definitions from your JavaScript automatically
["@pika/types-builder"]
]
},
// ...
}
No other configuration or tooling needed! When you run pika build
in your project you'll get a built pkg/
directory, with all package.json
entrypoints (like "main"
and "module"
) added automatically:
/* Your generated `pkg/` package.json manifest: */
{
"name": "simple-package",
"version": "1.0.0",
"esnext": "dist-src/index.js",
"main": "dist-node/index.js",
"module": "dist-web/index.js",
"types": "dist-types/index.d.ts",
"sideEffects": false,
"files": ["dist-*/", "assets/", "bin/"]
}
See a full collection of example projects here →
@pika/plugin-standard-pkg
: Compiles JavaScript/TypeScript to ES2018.@pika/plugin-ts-standard-pkg
: Compiles TypeScript to ES2018 (Uses tsc
instead of Babel, and builds type definitions automatically).@pika/plugin-build-deno
: Builds a distribution that runs on Deno (TS projects only).@pika/plugin-build-node
: Builds a distribution that runs on Node LTS (v6+).@pika/plugin-build-types
: Builds TypeScript definitions from your TS, or automatically generate them from your JS. Not required if you use @pika/plugin-ts-standard-pkg
.@pika/plugin-build-web
: Builds an ESM distribution optimized for browsers & bundlers.@pika/plugin-wasm-assemblyscript
: Builds WASM from TypeScript using AssemblyScript.@pika/plugin-wasm-bucklescript
: Builds WASM from ReasonML/OCAML using BuckleScript.@pika/plugin-wasm-bindings
: Builds a simple JS wrapper for any WASM build.@pika/plugin-bundle-node
: Creates a Node.js build with all code (including dependencies) bundled into a single file. Useful for CLIs.@pika/plugin-bundle-web
: Creates a ESM build with all code (including dependencies) bundled. Useful for unpkg & serving code directly to browsers.@pika/plugin-simple-bin
: Generates & configures a CLI wrapper to run your library from the command line.See a full list of official builders here →
Based on the popular np
package! Validates your directory before running you through the publish process step-by-step to publish your pkg/
sub-directory package.
FAQs
package building, reimagined.
The npm package @pika/pack receives a total of 18,095 weekly downloads. As such, @pika/pack popularity was classified as popular.
We found that @pika/pack demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
Security News
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.