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

fiss-hook-amd

v0.1.15

Published

fiss amd hook

Downloads

2

Readme

fiss-hook-amd

fis3-hook-amd的修改版。

#以下为fis3-hook-amd READEME.md


fis3-hook-amd

fis3 已经默认不自带模块化开发支持,那么如果需要采用 amd 规范作为模块化开发,请使用此插件。

安装

全局安装或者本地安装都可以。

npm install -g fis3-hook-amd

或者

npm install fis3-hook-amd

用法

在 fis-conf.js 中加入以下代码。

fis.hook('amd', {
  // 配置项
});

说明

请配合 require.jsesl.js 或者其他满足 amd 规范的前端加载器一起使用。

注意:虽然是 amd 插件,但是同样支持 commonjs 规范,对目标文件设置 isMod 属性,此插件会自动包裹成 amd 规范的。

fis.match('/modules/**.js', {
  isMod: true
})

另外需要注意的是 amd 插件需要,需要把目标文件解析成 ast,然后再基于 ast 来处理,对于大的 js 文件来说,确实很费时间。那么如果想跳过某些文件的分析,请添加 skipDepsAnalysis:true, 可以大大减少编译时间。

fis.match('some big file', {
  skipDepsAnalysis: true
})

自定义模块ID

插件默认使用资源的绝对路径作为模块ID,如果希望更改模块ID,需要对目标文件设置 moduleId 属性

fis.match('/modules/(**).js', {
  isMod: true,
  moduleId: '$1'
})

通过上述配置,我们可以将 /modules/A.js 的模块ID由 modules/A 改变为 A

另外

fis 的 amd 方案,是把对依赖的分析过程从运行期改成了编译期,所以请尽量不要设置 require.config({options...}), 因为一旦设置了 baseUrlpaths 或者 packages 什么的,会让 fis 静态编译时分析变得很困难,甚至分析不到。

但是,你可以在编译期做同样的配置。

// in fis-conf.js

fis.hook('amd'{
  baseUrl: './modules',
  paths: {
    $: 'jquery/jquery-1.11.2.js'
  }
})

具体请查看配置项说明

配置项

  • globalAsyncAsSync 是否将全局下面的异步用法,当同步处理。作用是,本来要运行时加载的,现在变成页面里面直接引用了。

    此开关为全局选项,如果只想控制部分 require 的用法,可以通过 js 注释来控制。

    当全局异步用法当同步用法关闭时,只有加了 fis sync 注释的异步用法才会当同步处理。

    // fis sync
    require(['./module/a'])

    当全局异步用法当同步用法开启时,只有加了 fis async 注释的异步用法才保留异步作用。

     // fis async
    require(['./module/a'])
  • baseUrl 默认为 . 即项目根目录。用来配置模块查找根目录。

  • paths 用来设置别名,路径基于 baseUrl 设置。

    fis.hook('amd', {
      paths: {
        $: '/modules/jquery/jquery-1.11.2.js'
      }
    });
  • packages 用来配置包信息,方便项目中引用。

    fis.hook('amd', {
      packages: [
        {
          name: 'foo',
          location: './modules/foo',
          main: 'index.js'
        }
      ]
    });
    • require('foo') 的时候等价于 require('/modules/foo/index.js').
    • require('foo/a.js') 的时候,等价于 require('/modules/foo/a.js').
  • shim 可以达到不改目标文件,指定其依赖和暴露内容的效果。注意只对不满足amd的js有效

    fis.hook('amd', {
        shim: {
            'comp/2-0/2-0.js': {
                deps: ['jquery'],
                exports: 'myFunc'
            }
        }
    });
    • key 为目标文件
    • value
      • deps [可选] 依赖的 module 列表。

      • exports [可选] 暴露的对象名称。

      • init [可选] 暴露的可以通过自定的方法来控制。

        fis.hook('amd', {
            shim: {
                'comp/2-0/2-0.js': {
                    deps: ['jquery'],
                    init: 'function($) {return $.extend({a: 1}, {b: 2})}'
                }
            }
        });
  • forwardDeclaration 默认为 true, 用来设置是否开启依赖前置,根据前端加载器来定。

  • skipBuiltinModules 默认为 false, 只有在 forwardDeclaration 启动的时候才有效,用来设置前置依赖列表中是否跳过内置模块如: require, module, exports

  • extList 默认为 ['.js', '.coffee', '.jsx', '.es6'],当引用模块时没有指定后缀,该插件会尝试这些后缀。

  • tab 默认为 2, 用来设置包裹时,内容缩进的空格数。

  • ignoreDependencies 默认为空,当分析到某个文件的时候,此插件会把当前文件标记依赖目标文件。如果你希望部分文件不这么做,那么请设置此插件。

    fis.hook('amd', {
        ignoreDependencies: [
          'angular2/angular2'
        ]
    });