Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

create-element-ns

Package Overview
Dependencies
Maintainers
1
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

create-element-ns

dom createElement hyperscript with svg, namespace and selector support

  • 0.5.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1
Maintainers
1
Weekly downloads
 
Created
Source

create-element-ns

dom createElement and createElementNS hyperscript with svg, namespace and selector support

ExampleFeaturesAPILicense

Example

var createElementNS = require('create-element-ns')

var html = createElementNS.html,
    createHtmlFac = createElementNS.html({partial: true}),
    svg = createElementNS.svg

// selectors or attributes
var divEl1 = html('div.c1#i1[style="color:blue"].c2', {onclick: function() {}}),
    divEl2 = html('div.i1', {style: {color: 'blue'}, props:{className: 'c1 c2', , onclick: function() {}}})

// namespace in different ways
var circleEl1 = html('svg:circle'),
    circleEl2 = svg('svg:circle'),
    circleEl3 = html('circle[xmlns=http://www.w3.org/2000/svg]')
    circleEl3 = html('circle', {element: {xmlns : 'http://www.w3.org/2000/svg'}})

// partial application to reate multiple modified clones
var pFactory = html('p', {textContent: 'x', partial: true}),
    pEl1 = pFactory({textContent: 'x'})

Features

  • namespaced tag and namespaced attribute support
  • svg namespace and utility functions pre-defined
  • w3 string selector API, including attributes
  • element decorators for element properties and attributes
  • ability to inject a document API for server and/or testing (e.g. jsdom)
  • ability to create an element or an element factory
  • ability to create additional namespaces and utility namespaced functions

There are many hyperscript modules out there (docrel, create-element-from-selector, domator, makeelement, simpel to name a few) but they either don't support namespaces, like svg or are more oriented to virtual-dom applications.

API

Main methods

To create an element (methods that return a DOM Element):

  • html(definition [, options][, content]) => HTMLElement || elementFactory
  • svg(definition [, options][, content]) => SVGElement || elementFactory

If there is no tagName defined or if there is a partial property {partial: true} in the arguments, the function returns a factory instead of an element.

Parameters and outputs

  • definition: a string selector, elementFactory or DOM Element
  • options: an optional qualifier object of attributes and properties or an optional elementDecorator function
    • qualifier: {properties:{}, attributes:{}, style:{}, dataset:{}}. Alias s, a, p, d, props, attrs
    • elementDecorator(el) => el' modifies an element directly
  • content: optional series of string, Element and arrays of strings and Elements
  • elementFactory([elementDecorator|optionObject]) => el

Optional additional utilities

  • .api(documentAPI) injects an external document API like jsdom. Uses the global document if not specified.
  • .ns(prefix, URI) adds additional namespace prefix (svg is already defined). E.g. .ns('xlink', 'http://www.w3.org/1999/xlink')
  • .factory(nsDecorators, partial, URI) to create additional namespace functions (html and svg are already defined)

License

Released under the MIT License

Keywords

FAQs

Package last updated on 09 Nov 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc