npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

webpack-dll-ng-module-loader

v1.2.0

Published

Cheat AngularCompilerPlugin to work around https://github.com/angular/angular-cli/issues/4565

Downloads

42

Readme

webpack-dll-ng-module-loader

Build Status

A workaround on the issue that @ngtools/webpack fail to build lazy modules when @angular/core is bundled into a webpack dll.

If you are not bundling @angular/core to webpack dll, you probably never need this plugin.

Install

yarn add webpack-dll-ng-module-loader

Usage

1. Use WebpackDllNgModuleLoader on your application

Import WebpackDllNgModuleLoader in the root module app.module.ts:

import { WebpackDllNgModuleLoader } from "webpack-dll-ng-module-loader";

Then provide the NgModuleFactoryLoader using WebpackDllNgModuleLoader

{ provide: NgModuleFactoryLoader, useClass: WebpackDllNgModuleLoader }

2. Webpack Configuration

If you are hand crafting the webpack configuration of the whole Angular Project, please refer to 2.1 for how to get it works.

If you are using @angular/cli, it is recommended to install ngx-build-plus and skip the 2.1 section and see ngx-build-plus integration guide for a step-by-step integration guide to ngx-build-plus.

2.1 Use CheatAngularCompilerResourcePlugin on your webpack configuration

This section is for those who have ejected Angular CLI configuration or built the webpack configuration from the ground. Import CheatAngularCompilerResourcePlugin in the webpack configuration webpack.config.js.

const {
  CheatAngularCompilerResourcePlugin
} = require("webpack-dll-ng-module-loader/plugin");

Then add CheatAngularCompilerResourcePlugin before the AngularCompilerPlugin on your webpack configuration. Here the order matters since the plugin cheats AngularCompilerPlugin to process async resources issued by webpack-dll-ng-module-loader.

plugins: [
  new CheatAngularCompilerResourcePlugin(),
  new AngularCompilerPlugin({
    /* compiler options */
  })
];

Example

The integration/example folder is a demo of using webpack-dll-ng-module-loader in an angular application with @angular/* dependencies bundled in a dll vendors. While the plugin tests against this application, the configuration is overly simplified to demonstrate the plugin usage only and thus is far from optimized.

You can run the following command to serve the built application

npm test && cd integration/example && python3 -m http.server 8611

Then visit http://localhost:8611 to see the demo.

Note

  • Do not add webpack-dll-ng-module-loader to your dll entries, otherwise it will fail with the same reason of this issue.

  • This plugin relies on the internals of @ngtools/webpack and @angular/core, though it works well with Angular 6.0 but in the future it might fail within the minor/patch version of angular without any notice. Use at your own risk.