Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

systemjs-webpack-interop

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

systemjs-webpack-interop

helpers for getting webpack bundles to be loaded by systemjs

  • 2.3.7
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
149K
decreased by-6.03%
Maintainers
1
Weekly downloads
 
Created

What is systemjs-webpack-interop?

The systemjs-webpack-interop package is designed to facilitate the integration of Webpack bundles with SystemJS, a dynamic module loader. This package helps in configuring Webpack to produce bundles that can be easily consumed by SystemJS, making it easier to manage dependencies and load modules dynamically in a micro-frontend architecture.

What are systemjs-webpack-interop's main functionalities?

Setting Public Path

This feature allows you to set the public path dynamically based on the module name. This is particularly useful in micro-frontend architectures where different applications might be served from different locations.

const { setPublicPath } = require('systemjs-webpack-interop');
setPublicPath('my-app');

Dynamic Import Map

This feature allows you to set an import map dynamically, which SystemJS uses to resolve module paths. This is useful for managing dependencies that are hosted on different CDNs or servers.

const { setImportMap } = require('systemjs-webpack-interop');
setImportMap({
  imports: {
    'my-dependency': 'https://cdn.example.com/my-dependency.js'
  }
});

Webpack Plugin

This feature provides a Webpack plugin that automatically sets the public path for your Webpack bundles based on the SystemJS module name. This ensures that your bundles are correctly loaded by SystemJS.

const SystemJSPublicPathWebpackPlugin = require('systemjs-webpack-interop/SystemJSPublicPathWebpackPlugin');
module.exports = {
  plugins: [
    new SystemJSPublicPathWebpackPlugin({
      systemjsModuleName: 'my-app'
    })
  ]
};

Other packages similar to systemjs-webpack-interop

FAQs

Package last updated on 25 May 2021

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