Socket
Socket
Sign inDemoInstall

pnp-webpack-plugin

Package Overview
Dependencies
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pnp-webpack-plugin

plug'n'play resolver for Webpack


Version published
Weekly downloads
4.3M
decreased by-3.14%
Maintainers
1
Weekly downloads
 
Created

What is pnp-webpack-plugin?

The pnp-webpack-plugin is a plugin for Webpack that enables Webpack to resolve modules using Plug'n'Play (PnP) API, which is a feature of Yarn. This allows for faster and more reliable module resolution by eliminating the need for node_modules directories.

What are pnp-webpack-plugin's main functionalities?

Basic Setup

This code demonstrates the basic setup of pnp-webpack-plugin in a Webpack configuration. It adds the PnpWebpackPlugin to the resolve and resolveLoader plugins arrays, enabling Webpack to use the PnP API for module resolution.

const PnpWebpackPlugin = require('pnp-webpack-plugin');

module.exports = {
  resolve: {
    plugins: [PnpWebpackPlugin],
  },
  resolveLoader: {
    plugins: [PnpWebpackPlugin.moduleLoader(module)],
  },
};

Custom Module Resolution

This code shows how to use pnp-webpack-plugin to create custom module resolution aliases. The resolveRequest method is used to resolve the path to 'my-package' and create an alias 'my-alias' for it.

const PnpWebpackPlugin = require('pnp-webpack-plugin');

module.exports = {
  resolve: {
    plugins: [PnpWebpackPlugin],
    alias: {
      'my-alias': PnpWebpackPlugin.resolveRequest('my-package', __dirname),
    },
  },
};

Integration with Babel Loader

This code demonstrates how to integrate pnp-webpack-plugin with Babel loader. The moduleLoader method is used to configure the Babel loader to use the PnP API for resolving modules.

const PnpWebpackPlugin = require('pnp-webpack-plugin');

module.exports = {
  module: {
    rules: [
      {
        test: /\.js$/,
        loader: 'babel-loader',
        options: PnpWebpackPlugin.moduleLoader(module),
      },
    ],
  },
};

Other packages similar to pnp-webpack-plugin

Keywords

FAQs

Package last updated on 28 Sep 2018

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