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

@triskel/app

v1.1.26

Published

triskel HTML renderer app

Downloads

116

Readme

@triskel/app

Compact, reliable and customizable HTML minifier.

npm bundlephobia GitHub license

Build Status Coverage Status dependencies Status

Installation

npm install @triskel/app --save-dev

RenderApp

RenderApp creates an instance with a context for rendering

var APP = require('@triskel/app');

TriskelApp instance:

Methods

  • APP.render( parent_node, Triskel Structured Nodes (TSList) )

  • APP.defineFilter(filter_name String, filter Function)

    • filter_name, String name for identify filter
    • filterFunction(input_var /* usually a string */)
  • APP.eval(expression String) returns a function that and evaluates data with passed expression

    APP.defineFilter('uppercase', function (text) {
      return text.toUpperCase();
    });
    
    var renderName = APP.eval(' person.first_name | uppercase ');
    
    renderName({ person: { first_name: 'John' } });
    // results: 'JOHN'
  • APP.withNode(withNode Function) passed withNode(node TSList Node)

    TSList Node Types:

    • Node Element: { $: 'input', attrs: { required: '' } }

    • Text Node: Strings in TSList are converted to { text: 'Lorem ipsum...' }

    • Comment Node: { comments: 'This is a JS comment' }

    Returned Object determines what to do with node to be rendered

    with_node Object {
      `replace_by_comment`: <String|false|undefined>,
      `initNode`: <Function (node_el HTMLElement, node Object, render_options Object, with_node Object)>
    }
    APP.withNode(function (node) {
      if( node.$ === 'div' ) return {
        replace_by_comment: 'replaced div: ' + node._,
      };
    });
    
    '<div>lorem ipsum...</div><span>foobar</span>'
    
    // resulting DOM:
    // <!--replaced div: lorem ipsum...--><span>foobar</span>
    APP.withNode(function (node) {
      if( node.attrs && node.attrs['data-click'] === 'log' ) return {
        initNode: function (button_el, node /* TSList Node */, render_options /* options passed to APP.render */) {
          button_el.addEventListener('click', function (e) {
            console.log('button clicked', button_el);
            });
        },
      };
    });
    
    // previous code will log in console every click for nodes with attribute [data-click=log]:
    // <div><button data-click="log"></button></div>
  • APP.component(tag_name String, options Object or initNode Function)

    • options Object
      {
        'template': <TSlist>,
        `controller`: initNode `Function`,
        'data': <Object>, // Data to be rendered
      }

    Component example

    APP.component('my-div', {
      template: [
        { $: 'ul', _: [
          { $: 'li', _: 'First name: {{ person.first_name }}' },
          { $: 'li', _: 'Last name: {{ person.last_name }}' },
          { $: 'li', _: 'Age: {{ person.birthday | ageDiff }}' },
        ] }
      ],
      data: {
        person: {
          first_name: 'John',
          last_name: 'Smith',
          birthday: '1980-01-01'
        }
      },
    });
  • APP.directive(attribute_match String, initNode Function, withNode Function)

    • attribute_match: string received will be evaluated as /^attribute_match$/
    • withNode: Special withNode that receives: this.attr_key and this.attr_value

Directive example

APP.directive('if-mobile', function (node_el) {

  if( this.attr_value === 'log' ) {
    console.log('node has being rendered')
  }

}, function withNode (node) {
  console.log(this.attr_key); // results: 'if-mobile'
  console.log(this.attr_value); // results: <value of attribute>

  if( matchMedia('(max-width: 768px)').matches ) return {
    replace_by_comment: 'if-mobile: ' + this.attr_value,
  };
});