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

yyl-inlinesource

v1.2.1

Published

inline source plugin for html, css, js

Downloads

14

Readme

yyl-inlinesouce

简介

  • 为 html 文件提供 script, link inline 代码内联语法糖
  • 为 html 文件中 style 标签 中的图片地址, img 标签 src 属性 提供 xx.png?__inline 图片 base64 转化语法糖
  • 为 js 文件 提供 __inline('./xx.tpl') 模板文件内置 的语法糖
  • 为 js 文件 提供 __inline('./xx.png') 图片 base64 转化语法糖

使用说明(相对路径)

html, tpl 部分

script, link 标签内联写法

这是 link 标签 和 script 标签的 内联写法

<link rel="stylesheet" href="./css/demo.css" type="text/css" charset="utf-8" inline/>
<script src="./js/demo.js" inline></script>

img 标签 base 64 置换写法

这是 img标签 base64 的写法

<img src="./img/logo.png?__inline" />

构建完成后会变成base64格式

<img src="data:png;base64,......" />

js 部分

js 文件tpl 内联写法

假设有 box.tpl 文件:

<span class="num">
  <span class='num-cnt'>123</span>
</span>

我们若在 js 这样调用

var tpl = __inline('../tpl/box.tpl');

则在构建完成后会变为:

var tpl = '<span class="num">\n  <span class=\'num-cnt\'>123</span>\n</span>\n';

js 文件img base64 写法

我们若在 js 这样调用

var avatar = __inline('../img/logo.png');

则在构建完成后会变为:

var avatar = 'data:png;base64,......';

css 部分

图片 base64 转换

我们若在 css 这样调用

body {
  background: url('../img/logo.png?__inline');
}

则在构建完成后会变为:

body {
  background: url('data:png;base64,......');
}

node 调用方式

const inlinesource = require('yyl-inlinesource');
const srcPath = path.join(__dirname, './src/demo.html');
const distPath = path.join(__dirname, './dist/demo.html');
inlinesource({
  baseUrl: path.dirname(srcPath),
  type: 'html',
  content: fs.readFileSync(srcPath)
}).then((cnt) => {
  console.log(cnt);
  fs.writeFileSync(distPath, cnt);
});
const inlinesource = require('yyl-inlinesource');
const srcPath = path.join(__dirname, './src/js/demo.js');
const distPath = path.join(__dirname, './dist/demo.js');
inlinesource({
  baseUrl: path.dirname(srcPath),
  type: 'js',
  content: fs.readFileSync(srcPath)
}).then((cnt) => {
  console.log(cnt);
  fs.writeFileSync(distPath, cnt);
});

使用说明(绝对路径)

html, tpl 部分

script, link 标签内联写法

这是 link 标签 和 script 标签的 内联写法

<link rel="stylesheet" href="/css/demo.css" type="text/css" charset="utf-8" inline/>
<script src="/js/demo.js" inline></script>

img 标签 base 64 置换写法

这是 img标签 base64 的写法

<img src="/img/logo.png?__inline" />

构建完成后会变成base64格式

<img src="data:png;base64,......" />

js 部分

js 文件tpl 内联写法

假设有 box.tpl 文件:

<span class="num">
  <span class='num-cnt'>123</span>
</span>

我们若在 js 这样调用

var tpl = __inline('/tpl/box.tpl');

则在构建完成后会变为:

var tpl = '<span class="num">\n  <span class=\'num-cnt\'>123</span>\n</span>\n';

js 文件img base64 写法

我们若在 js 这样调用

var avatar = __inline('/img/logo.png');

则在构建完成后会变为:

var avatar = 'data:png;base64,......';

css 部分

图片 base64 转换

我们若在 css 这样调用

body {
  background: url('/img/logo.png?__inline');
}

则在构建完成后会变为:

body {
  background: url('data:png;base64,......');
}

node 调用方式

const inlinesource = require('yyl-inlinesource');
const srcPath = path.join(__dirname, './src/demo.html');
const distPath = path.join(__dirname, './dist/demo.html');
inlinesource({
  baseUrl: path.dirname(srcPath),
  publishPath: '/html/',
  type: 'html',
  content: fs.readFileSync(srcPath)
}).then((cnt) => {
  console.log(cnt);
  fs.writeFileSync(distPath, cnt);
});
const inlinesource = require('yyl-inlinesource');
const srcPath = path.join(__dirname, './src/js/demo.js');
const distPath = path.join(__dirname, './dist/demo.js');
inlinesource({
  baseUrl: path.dirname(srcPath),
  publishPath: '/js/',
  type: 'js',
  content: fs.readFileSync(srcPath)
}).then((cnt) => {
  console.log(cnt);
  fs.writeFileSync(distPath, cnt);
});

参数说明

/**
 * @param  {Object}  op             参数
 * @param  {String}  op.baseUrl     文件当前路径
 * @param  {String}  op.publishPath 文件输出的路径
 * @param  {Buffer}  op.content     文件内容 
 * @param  {String}  op.type        文件类型, js|html
 * @param  {Boolean} op.minify      是否压缩
 * @return {Promise} Promise        返回一个 Promise 对象
 */
inlinesource(op)

历史版本

这里