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 🙏

© 2025 – Pkg Stats / Ryan Hefner

ebuilder-js

v0.0.12

Published

Highly configurable and easily manipulable elements in a single declaration, with a functionnal touch.

Readme

EBuilder : an HTML element builder

Build and manipulate elements the intuitive way, in a single statement with a touch a functionnal programming.

const p = EBuilder('p').setContent('Lopsum Irem').into(document.body)

Installation

Using npm

npm i ebuilder-js
import EBuilder from 'ebuilder-js'

Using bundle

<script src="./path/to/ebuilder.min.js"></script>

Doc

EBuilder input

EBuilder(input: string | Element | EBObject)

| Argument type | Example | |---------------|---------| | string | EBuilder('p') | | html string | EBuilder('<p>Hello <span class="italic">World</span>!</p>') | | @rule string | EBuilder('@select:p.paragraph:nth-child(1)') | | Element | Ebuilder(document.querySelector('p')) | | EBObject | EBuilder(EBuilder('p')) |

Methods

DOM methods

into(target, options?)

  • target: a Node or EBObject
  • options: { at?, times? }
    • at: the position in the parent. Accepts a number (0 is first, -1 is last, floats are rounded), or 'start' or 'middle' or 'end'. Default value: -1
    • times: number of copies. Default value: 1

Example:

const list = EBuilder('ul')
    .setChildren([ '<li>First</li>', '<li>Last</li>' ])
    .into(document.body)

EBuilder('<li>HERE WE ARE</li>').into(list, { at: 'middle', times: 3 })

/*
- First
- HERE WE ARE
- HERE WE ARE
- HERE WE ARE
- Last
*/

before(target)

Places the element right before the target

after(target)

Places the element right after the target

replace(target)

Places the element at the target's position and removes the target

swap(target, animate?)

If both the element and the target are in the DOM, makes them swap. If animate is true, shows the animation.

out()

Removes the element from the DOM

Setter methods

set()

Signature:

EBuilder(x).set({}: {
    attributes?: { [attributeName: string]: string },
    properties?: { [propertyName: string]: any },
    style?: { [styleName: string]: string },
    listeners?: EventTuple | EventTuple[],
    children?:  EBChild | EBChild[],
})
  • EventTuple: array of addEventListener arguments, e.g.:
[ 'click', () => console.log('clicked'), false ]
  • EBChild: any valid EBuilder children input (html string, Node, EBObject):
children: [
    '<h3>My article</h3>',
    document.querySelector('p'),
    EBuilder('button').setContent('read more')
]

Note that any value can be replaced with a function returning that value, see Function as value

setAttributes(object)

setProperties(object)

setListeners(array)

setChildren(EBChild | EBChild[])

setClasses(string | array)

setStyle(object)

setContent(string | EBObject)

Miscellaneous

toString()

Returns the current element's outerHTML, allowing a convenient access to that value:

const button = EBuilder('button').set({ ... })

someElement.innerHTML += button

dispatch(string)

Emits an event from the current element with the input string as a name. See event-name example for a practical use.

given(ReferencePair | ReferencePair[])

ReferencePair: [ anyReference, 'unique-string-id' ] Registers any reference in the EBuilder object, allowing to be accessed with an @at-rule followed by unique-string-id.
Note that if the anyReference is a named function, the string id can be omitted and the function name will be used as an id in this cas

See event-emitter example or @if example for a practical uses.

Properties

  • el or element: the generated HTML element.
  • htmlContent: element's innerHTML
  • count: number of children
  • children: node list of children
  • ... and more to come!

Function as value

Any value can be replaced with a function to be executed in the process (provided that function returns an appropriate value). This can be useful in many situations:

  • Dynamic rendering
  • Conditional value
  • Self-reference with this or bound argument

Dynamic rendering

// value is fixed
EBuilder('p').setProperties({ 'textContent@interval:500': Math.random() })

// value is dynamic
EBuilder('p').setProperties({ 'textContent@interval:500': () => Math.random() })

Conditionnal value

Self-reference

Function expressions are bound to the current EBuilder object through this argument, so you can get its reference within the same statement:

EBuilder('<ul><li>0</li></ul>').setProperties({
    'innerHTML@on:click': function() { return this.htmlContent + `<li>${this.count}</li>` }
})

// also available as the first parameter:

EBuilder('<ul><li>0</li></ul>').setProperties({
    'innerHTML@on:click': (self) => self.htmlContent + `<li>${self.count}</li>`
})

@-rules

Added at the end of a key string, @-rules allow conditionnal evaluation of the corresponding value in an object. Such rules are available in every object argument of a setting method (.setStyles(), .setChildren()...), including the set() method at both levels:

EBuilder('button').set({
    'properties@on:mouseover': {
        'textContent@interval:1000': () => new Date().getSeconds()
    }
}).into(document.body)

@on, @once

The corresponding value will be set when an :eventName event is emitted by the current element.

{ 'key@on:eventName': 'value' } would basically translate to

this.addEventListener('eventName', () => element.key = 'value')

This allows to do funny things quite straight-forwardly:

EBuilder('<button>click me</button>').setProperties({
    'textContent@on:click': () => Math.random() < .5 ? 'win!' : 'loose!',
    'innerHTML@on:mouseleave': 'Hey <strong>come back</strong>!'
}).into(document.body)

With @on the value will be updated each time the event occurs, but only the first time with @once

:event-name

The event name can be any string value:

  • A built-in event: click, keydown...
  • A specific EBuilder event: EBuilderinsert, EBuilderset
  • Or any custom event of your own, such as: 'faisons comme ça!'

Note that EBuilder allows to dispatch such events easily with the dispatch() method, which allows to do such things:

EBuilder('ul')
    .setProperties({ 'innerHTML@once:hi-there': (self) => self.htmlContent + '<li>2</li>' })
    .setChildren('<li>1</li>')
    .dispatch('hi-there')

/*
- 1
- 2
*/

#event-emitter

By default, the listener is set on the current element. But what if I want my element to react to an external event, like a click on a button?
To achieve this you can designate a specific target using # in the string key after the event name. But there's a catch: for EBuilder to recover the right object from that string, it must have been previously referenced with the given() method, as in the example below:

const myButton = EBuilder('button').into(document.body)

EBuilder('p')
    .given([myButton, 'buttonRef'])
    .setProperties({ 'textContent@once:click#buttonRef': 'Hello!' })
    .into(document.body)

(More details about given() above)

The window object is an exception to this rule, as it doesn't need to be pre-indexed.

@timeout, @interval

'key@timeout:duration', 'key@interval:duration'

These methods have the same behaviour as the eponym functions. Example:

EBuilder('div').into(document.body).setStyles({
    width: '200px',
    height: '200px',
    transition: 'background 1s',
    'background@interval:1000': () => `hsl(${360 * Math.random()}, 50%, 50%)`
})

Note: the interval function is referenced as the .interval property, which means you can clear it using clearInterval(myEBuilderObject.interval).

@if

'key@if:functionReference: 'value'
The corresponding value is assigned if the specified :functionReference function returns true. See given() method for more details about references.

const isLucky = () => Math.random() < .5

EBuilder('<button>click me</button>')
    .given(isLucky)
    .set({
        'properties@on:click': { 'textContent@if:isLucky': 'Bravo!' }
})

@for

-- NOT YET AVAILABLE --

'key@for:arrayReference: 'value'