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

gulp-sfc-loader

v1.0.8

Published

Gulp plugin for html SFC

Downloads

8

Readme

Intro

Gulp-SFC-loader 是一个使用单文件组件思想,用于方便传统HTML 项目进行模块化,同时完成內联js 及css编译及抽离的gulp 插件;基于加载速度优化的策略,默认会开启对文件的压缩;

Install

npm install gulp-sfc-loader

Config

默认设置

{
  htmlMinify: true,
  templateTag: 'template',
  cssConfig: {
    name: 'common',
    outputDir: './',
    basePath: '',
    minify: true,
  },
  jsConfig: {
    name: 'common',
    outputDir: './',
    basePath: '',
    minify: true,
    babelOption: {
      presets: ['@babel/env']
    },
  },
  layoutConfig: {
    componentPattern: 'component',
    isLayout: false,
    layoutFile: './layout.ejs',
    replaceTag: {
      style: '<!-- __style__ -->',
      script: '<!-- __script__ -->',
      body: '<!-- __body__ -->',
    }
  }
}
  • htmlMinify 是否压缩html,默认开启
  • templateTag 模板替换标签,默认为template
  • cssConfig
    • name 导出css 的文件名,如果是字符串,则所有css 将合并在此文件中,也可以是一个带有文件目录参数的函数,可以解析使用当前目录名左作为css 文件名
    • outputDir 导出css 到指定的目录
    • minify 是否压缩,默认开启
    • basePath 输出到页面中时文件的路径,默认情况下将使用outputDir 字段
  • jsConfig
    • name 导出js 的文件名,如果是字符串,则所有js 将合并在此文件中,也可以是一个带有文件目录参数的函数,可以解析使用当前目录名左作为js 文件名
    • outputDir 导出js 到指定的目录
    • basePath 输出到页面中时文件的路径,默认情况下将使用outputDir 字段
    • minify 是否压缩,默认开启
    • babelOption babel编译选项
  • layoutConfig
    • componentPattern 当文件夹目录包含此字符串时,视为模块处理
    • isLayout 是否读取layout 文件替换模版,默认为false
    • replaceTag
      • style 模版文件中用于替换css 的标签,默认为<!-- __style__ -->
      • script 模版文件中用于替换js 的标签,默认为<!-- __script__ -->
      • body 模版文件中用于替换内容html 的标签,默认为<!-- __body__ -->

Usage

gulp.task('default', () => {
  return gulp.src('./views/pages/**/*.ejs')
      .pipe(ejsLoader({
        cssConfig: {
          // name字段如果为函数,可以使用文件的相对路径作为参数,规则可参考https://www.npmjs.com/package/vinyl#filerelative
          name: (path) => {
            return path.match(/\w+(?=\/)(?!\.html)/g)[0] ;
          },
          // name: 'common',
          outputDir: './dist/css/',
          basePath: '/public/dist/css/'
        },
        jsConfig: {
          name: (path) => {
            return path.match(/\w+(?=\/)(?!\.html)/g)[0] ;
          },
          outputDir: './dist/js/',
          basePath: '/path/css/'
        },
        layoutConfig: {
          isLayout: true,
          layoutFile: './views/layout.ejs',
        }
      }))
      .pipe(gulp.dest('./dist/pages/'));
})

在layout中使用如下方式写入占位符,方便后续位置填充

./views/layout.ejs

<head>
  <!-- __style__ -->
</head>
<body>
  <!-- __body__ -->
  <script src="vue.js"></script>
  <!-- __script__ -->
</body>

在单独文件中以下列形式写模版

<style>
  div {
    width: 40px;
    height: 30px;
  }
</style>
<!-- 此处支持内联css,只需使用inline属性即可,同时支持使用预处理器,目前支持post css和sass /scss,postcss 需在项目目录下配置.postcssrc 文件 -->
<style inline lang="postCss">
  p {
    color: #333;
    font-size: 28px;
  }
</style>
<!-- 页面html  -->
<div class="mod">
  <div class="view">
    <!-- 支持使用@requireTpl方法引入组件到页面中 -->
    <!-- 支持使用参数,目前支持使用 escapeEjs 参数将引入的ejs 文件中的<% 及 %> 替换为<%% 和 %%> -->
    <!-- deprecated @requireTpl('./component/index.ejs', { escapeEjs: true }) -->
    <!-- 现使用templateTag 字段作为模板替换标签,避免编译失败时渲染网页出现不必要字符的问题 -->
    <template src="./component/index.ejs" escapeEjs></template>
  </div>
</div>
<!-- js 支持使用es6 及以上语法,将编译压缩,同样支持内联,使用inline属性,babel 配置项可在babelrc中配置-->
<script inline>
  const a = 2;
  [1, 2, 3].map((n) => n + 1);
  new Promise((res, rej) => {
    setTimeout(res(10))
  })
</script>

<!-- 对于带有type 为 x-templat 属性的script,将视为模版,将以压缩html 方式压缩标签中的代码。并附带在模版中  -->
<script type="text/x-template" id="tpl_xtemplate">
  x-template support
</script>