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

pageobjectmodel

v0.0.2

Published

Page Object Model Library

Downloads

13

Readme

POM

POM Definition and basic Node library

  • To be used in WYSIWYM tools
  • Influenced by
  • Constrains
    • Enforce clear copy structure, i.e. paragraphs can contain only inline formatting.
    • Documents can be nested
    • Allows components and extensions

Basic Model Schema

Represent various HTML/Markdown artifacts

Node

Extends Object

Field | Type | Required | Description ----- | ------ | -------- | ----------- type | string | Y | Define node type name | string | N | ID applied by editor for more efficient referencing. Doesn't have to be saved to DB attrs | object | N | Object of key-value attributes

Naming Convention

  • type of lowercase represent semantic / html / markdown artifacts and core classes
  • type of Pascal-case represnet components

Block Node

Extends Node

Field | Type | Required | Description ----- | ------ | -------- | ----------- items | array | Y | Contains nedsted nodes

Document

Extends BlockNode

Field | Value ----- | ------ type | document

JSON Example

{
  "type" : "document",
  "items" : [{
    "type" : "heading",
    "level" : 1,
    "text" : "Hello world"
  }, {
    "type" : "paragraph",
    "text" : "This is my lorem ipsum"
  }]
}

YAML Example

type: document
items:
  -
    type: heading
    level: 1
    text: Hello world
  -
    type: paragraph
    text: This is my lorem ipsum
  

Markdown Example

# Hello world

This is my lorem ipsum.

!IMPORTANT! As documents can be serialized to Markdown, they can be stored as it in both JSON and YAML formats. It's used often, when you have Fields component and store sub document (text area) as sub item.

Quote

Extends BlockNode

Field | Value ----- | ------ type | quote

TextNode

Extends Node

Field | Type | Required | Description ----- | ------ | -------- | ----------- text | string | Y | Contains text content formats | array | N | Contains format mappings

Field | Value ----- | ------ type | text

JSON Example

{
  "type" : "text",
  "text" : "This is my lorem ipsum"
  "formats" : [{
    "slice": [0,4],
    "apply": ["strong"]
  },{
    "slice": [11,5],
    "apply": [{
      "type": "A",
      "title": "Lorem ipsum"
      "href" : "http://www.lipsum.com/"
    }]
  }]
}

YAML Example

type: paragraph
text: This is my lorem ipsum
formats:
  -
    slice: [0,4]
    apply: [strong]
  -
    splice: [11,5]
    apply:
      -
        type: A
        title: Lorem ipsum
        href: http://www.lipsum.com/

Markdown Example

**This** is my [lorem ipsum](http://www.lipsum.com/ "Lorem ipsum").

Format

Extends Object

Field | Type | Required | Description ----- | ------ | -------- | ----------- slice | array of 2 integers | Y | Contains slice begining and length apply | array of strings | Y | Contains list of formats to be applied

Allowed formats:

  • strong

  • em

  • small

  • code

  • abbr

  • cite

  • code

  • a

  • sub

  • sup

Mapping of not allowed inline tags:

From | To ---- | ---- b | strong big | strong i | em tt | code acronym | abbr var | code kbd | code

Mapping to be defined:

  • dfn
  • time
  • bdo
  • q
  • span
  • del
  • s

Link

Extends Format

Field | Type | Required | Description ----- | ------ | -------- | ----------- href | string | Y | Target of the link title | string | N | Title of the link target | string | N | Target window of the link

Field | Value ----- | ------ type | A

Paragraph

Extends TextNode

Field | Value ----- | ------ type | paragraph

Image

Extends Node

Field | Type | Required | Description ----- | ------ | -------- | ----------- src | string | Y | Image location title | string | N | Image title alt | string | N | Image alternative text

Field | Value ----- | ------ type | image

Heading

Extends TextNode

Field | Type | Required | Description ----- | ------ | -------- | ----------- level | number from 1 to 6 | Y | Heading level

Field | Value ----- | ------ type | heading

StaticBlockNode

Extends BlockNode

Components Model

Reflect more complex logic, mostly facilitated by Skaryna and Lackey.

Fields

Extends Node

Field | Type | Required | Description ----- | ------ | -------- | -----------

  • (any other than type | mixed | N | Slot for key/value listed children

Field | Value ----- | ------ type | Fields

Variants

Extends Node

Applies logic based on besetmatch

Field | Type | Required | Description ----- | ------ | -------- | -----------

  • (any other than type | mixed | N | Slot for key/value listed children

Field | Value ----- | ------ type | Variants

Lackey components to be considered as part of the standard

  • List
  • Block
  • Media

Lackey complex example

From Lackey example site

type: Fields
title: Welcome to Lackey
subtitle: |
    **A new breed of** CMS
headerImage:
    type: Media
    source: img/core/lackey-site-design.png
blocks:
    type: List
    items:
        -
            type: Block
            template: ~/core/partials/block/signup-demo
            fields:
                title: Contact us for a **free** personal demo of the Lackey CMS
            props:
                namePlaceholder: Name
                emailPlaceholder: Email
                buttonLabel: Send me my link!

        -
            type: Block
            template: ~/core/partials/block/copy-media
            fields:
                title: For Content Admins
                subtitle: Easy to use and difficult to break.
                copy: |
                    Lackey facilitates the Client / Agency relationship, enforcing design rules and keeping admin users on a need to know basis. No dev stuff. It’s simple, focused & consistent. Most CMS's let admins pick fonts, add hex ref colours, write HTML tags, and inject content in situations where it was never intended to go. Lackey gives admins just enough power and an easy life.
                image:
                    type: Media
                    source: img/core/lackey-cms-screenshot-1.png
            props:
                theme: white
                imageAlignment: side

        -
            type: Block
            template: ~/core/partials/block/copy-media
            fields:
                title: Power for Developers
                subtitle: Build better, faster.
                copy: |
                    The core technologies Lackey is built on are [Node.js](https://nodejs.org/) & [PostgreSQL](https://www.postgresql.org/). We use [npm](https://www.npmjs.com/) in favour of a plugin architecture and have the [core implemented as an npm module](https://github.com/getlackey/lackey-cms) and abstracted out from the instance (website or theme to those transitioning to us to escape Wordpress). We also provide an [open source example site](https://github.com/getlackey/lackey-cms-site) which will allow you to run/reuse the exact website you're reading now. Enjoy!
                image:
                    type: Media
                    source: img/core/lackey-cms-screenshot-2.png
            props:
                theme: white
                imageAlignment: side

        -
            type: Block
            template: ~/core/partials/block/copy-media
            fields:
                title: Freedom for Designers
                subtitle: Be creative. Not constrained.
                copy: |
                    Downloading $20 Wordpress themes and retrofitting the PSD with a font change brings shame on us all. Be original! Lackey layouts are limited only by your creativity. Structural Page Composition can be delegated to the client/admin who best knows how to tell their story; without giving them the means to compromise it's aesthetic. This new breed of CMS has been reimagined from the ground up as the perfect tool to collaborate on amazing, unique visual content.
                image:
                    type: Media
                    source: img/core/lackey-emblem.svg
            props:
                theme: blue
                imageAlignment: center

        -
            type: Block
            template: ~/core/partials/block/copy-cta
            fields:
                copy: The Lackey UI roadmap prototype is on InVision. Use your right arrow key!
                backgroundImage:
                    type: Media
                    source: img/core/lackey-ui-prototype.jpg
            props:
                href: https://invis.io/P383OLENF
                buttonLabel: Let's see it then