是否可以为angular2设置一个npm repo,自动处理默认扩展的systemjs配置?
我正在构建ng2 orm,很好奇在安装npm时这是否是自动的。
我的package.json已经有一个“main”定义,但没有默认扩展名。有没有一种自动化的方法,当我的包被使用时,实现者不需要为它们创建systemjs.config.js行?
这是我的systemjs.config.js文件,见ng2 orm行,我不得不手动添加它们。

/**
 * System configuration for Angular samples
 * Adjust as necessary for your application needs.
 */
(function (global) {
  System.config({
    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',
      'ng2-orm': 'npm:ng2-orm'
    },
    // 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'
      },
      'ng2-orm': {
        main: './dist/js/index.js',
        defaultExtension: 'js'
      }
    }
  });
})(this);

最佳答案

如果您想自动化systemjs.config.js,您需要的工具是npm模块JSPM。告诉它安装某些模块,然后安装这些模块并为您更新package.json和systemjs.config.js。至少,那是梦想!

关于javascript - 使用system.js的defaultExtension配置Angular2库,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/39716781/

10-10 02:01