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

astros-js-tpl

v1.1.1

Published

这是一个Astros中间件

Downloads

15

Readme

这是一个Astros中间件

传统方案中,JS渲染HTML,是通过字符串拼接的形式,JS和HTML代码混合在一起,维护起来很不方便。Astros的中间件 astros-js-tpl,提供了另一种解决方案。可以用在JS中直接引用HTML文件,方便维护和开发。

astros-js-tpl会把依赖的JS组件的HTML合并到文件最前面。

note:

示例中,$tpl是全局方法,用于设置和返回模板,以下是一个简单的实现,使用该功能需要你调用组件前实现这个方法。

配置

{
    name:'astros-js-tpl',
    config:{
        tpl: "$tpl('{name}','{content}')",
        define:['(function(win) {',
            'var _tpl = {};',
            'window.$tpl = function(key, ctx) {',
                'if (ctx) {',
                    '_tpl[key] = ctx;',
                    'return;',
                '}',
                'return _tpl[key];',
            '}',
        '}(window));',
        ].join('\n')
    }
}

参数|说明 ----|---- tpl| 生成的JS模板的格式,{name}是模板路径,{content}是HTML内容 define| 模板设置方法的实现

以弹窗组件dialog为例

HTML路径:root/assets/jslib/dialog/dialog.html

<div class="dia-title">{{title}}</div>

此路径对应的 {name} = dialog/dialog

引用方式

在页面中通过$tpl直接引用

console.log($tpl('dialog/dialog'));
//output
//<div class="dia-title">{{title}}</div>

页面最终生成的JS顶部内容如下:

(function(win) {
    var _tpl = {};
    window.$tpl = function(key, ctx) {
        if (ctx) {
            _tpl[key] = ctx;
            return;
        }
        return _tpl[key];
    }
}(window));
$tpl('dialog/dialog', '<div class=\"dia-title\">{{title}}</div>');

示例2

HTML路径:root/assets/jslib/tp/tips.html

{name} = tp/tips

引用方式

console.log($tpl('tp/tips'));

示例2

HTML路径:root/assets/jslib/tp/toast.html

{name} = tp/toast

引用方式

console.log($tpl('tp/toast'))