NathanWalker / ng2-image-lazy-load

Angular2 image lazy loader library.
http://nathanwalker.github.io/ng2-image-lazy-load
MIT License
160 stars 36 forks source link

Not working with systemjs #19

Closed bigggge closed 7 years ago

bigggge commented 8 years ago

log like this and ng2-image-lazy-load.js has been installed in node_modules

home:44 Error: (SystemJS) XHR error (404 Not Found) loading http://localhost:3000/node_modules/ng2-image-lazy-load.js

system.config.js

/**
 * System configuration for Angular samples
 * Adjust as necessary for your application needs.
 */
(function (global) {
    System.config({
        defaultJSExtensions: true,
        paths: {
            // paths serve as alias
            'npm:': 'node_modules/'
        },
        // map tells the System loader where to look for things
        map: {
            // our app is within the app folder
            app: 'app',
            // angular bundles
            '@angular/core': 'npm:@angular/core/bundles/core.umd.js',
            '@angular/common': 'npm:@angular/common/bundles/common.umd.js',
            '@angular/compiler': 'npm:@angular/compiler/bundles/compiler.umd.js',
            '@angular/platform-browser': 'npm:@angular/platform-browser/bundles/platform-browser.umd.js',
            '@angular/platform-browser-dynamic': 'npm:@angular/platform-browser-dynamic/bundles/platform-browser-dynamic.umd.js',
            '@angular/http': 'npm:@angular/http/bundles/http.umd.js',
            '@angular/router': 'npm:@angular/router/bundles/router.umd.js',
            '@angular/forms': 'npm:@angular/forms/bundles/forms.umd.js',
            // other libraries
            'rxjs': 'npm:rxjs',
            // 'angular-in-memory-web-api': 'npm:angular-in-memory-web-api',
            'angular-in-memory-web-api': 'npm:angular-in-memory-web-api/bundles/in-memory-web-api.umd.js',
            'angular2-cookie': 'npm:angular2-cookie',

            //material
            "materialize-css": "node-modules/materialize-css",
            "materialize": "node_modules/angular2-materialize",
            "angular2-materialize": "node_modules/angular2-materialize",

            'ng2-image-lazy-load': 'node_modules/ng2-image-lazy-load'
        },
        // packages tells the System loader how to load when no filename and/or no extension
        packages: {
            app: {
                main: './main.js',
                defaultExtension: 'js'
            },
            rxjs: {
                defaultExtension: 'js'
            },
            'angular-in-memory-web-api': {
                main: './index.js',
                defaultExtension: 'js'
            },
            "materialize-css": {
                "format": "global",
                "main": "dist/js/materialize",
                "defaultExtension": "js"
            },
            "materialize": {
                "main": "dist/materialize-directive",
                "defaultExtension": "js"
            },
            'angular2-cookie': {
                main: './core.js',
                defaultExtension: 'js'
            }
        }
    });
})(this);