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

@virtualpatterns/nessa

v0.0.25

Published

Virtualize your Pug templates

Downloads

4

Readme

nessa

Nessa was an Ainu and a Valië and was ranked the least among the Valar. She was notable for her speed, being fast "as an arrow in movement", for which reason she was called Nessa the Swift.

A Babel plug-in which translate Pug templates into Hyperscript for virtual-dom diffing/rendering flows.

NPM

Installation

Add @virtualpatterns/nessa to dev dependencies in package.json:

npm install --save-dev @virtualpatterns/nessa

Tell Babel to use this plug-in in .babelrc:

"plugins": [
  "@virtualpatterns/nessa/distributables/library/transpiler"
]

Configuration

The recommended way to configure Babel options for nessa is with plug-in options, e.g.:

"plugins": [
  [
    "@virtualpatterns/nessa/distributables/library/transpiler",
    {
      "isDebugged": true,
      "logPath": "./process/logs/babel.log",
      "test": "\\.pug$"
    }
  ]
]

isDebugged and logPath

The isDebugged and logPath options control logging information. By default no logging output is produced. If only isDebugged is specified and is true logging output is written to the console. If only logPath is specified, regardless of isDebugged, logging output is written to the path specified.

test

The test option controls the files on which the plug-in operates and defaults to files that end in a .pug extension.

Usage

With Babel configured as above simply require a Pug file to access the template function which returns a virtual-dom VNode instead of HTML:

import Utilities from '@virtualpatterns/nessa'

const Template = require('./index.pug')

let virtualContent = Template({ 'foo': 'bar', Utilities });

Example

A sample application that uses the Babel plug-in can be found here.

Custom Elements

Custom elements can be included in templates and are simply passed as variables.

import Utilities from '@virtualpatterns/nessa'

const Welcome = require('./welcome.pug')
const Default = require('./default.pug')

... where welcome.pug is ...

h1 Welcome #{name}

... and default.pug is ...

div
  Welcome(  name=name
            Utilities!=Utilities)
  p #{name}'s Pug source code!

... and the Default template function is called passing a value for the Welcome template function, the name variable, and the Utilities object, e.g.:

let virtualContent = Default({
    Welcome,
    'name': 'Forbes',
    Utilities
  })

License

GPL-3.0+