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

create-element-basic

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

create-element-basic

HTML element string creation

  • 0.2.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
3
increased by200%
Maintainers
1
Weekly downloads
 
Created
Source

create-element-basic NPM version

HTML element string creation

Install

Install with npm

npm i create-element-basic --save

Usage

var createElement = require('create-element-basic');

createElement(htmlTag[string], attributes[object], content[string || function])

Breaking Change !

createElement will now determine if the htmlTag entered is empty or not. No longer necessary to enter a Boolean (true/false) as the second argument.

Create an HTML tag either closing or opening type.

Examples

// Before:
createElement('a', true, {href: 'http://www.apple.com'}, "Apple");
createElement('img', false, {src: "foo.png"});

// Now:
createElement('a', {href: 'http://www.apple.com'}, "Apple");
createElement('img', {src: "foo.png"});

yields:

<a href="http://www.apple.com">Apple</a>
<img src="foo.png" />

You can nest functions to create complex components.

  var closeAria = createElement('span', {'aria-hidden': true}, '&times;')
                + createElement('span', {class: 'sr-only'}, 'Close')
  
  var close     = createElement('button', {
                    class: 'close',
                    type: 'button',
                    'data-dismiss': 'alert'
                }, closeAria)
  
  var element   = createElement('div', extend({
                    class: modifier
                }, hash), close + 'One more time for the Gipper.')
  
  return element

yields:

<div class="alert alert-info alert-raised fade in">
  <button class="close" type="button" data-dismiss="alert">
    <span aria-hidden="true">&times;</span> 
    <span class="sr-only">Close</span> 
  </button>
  One more time for the Gipper.
</div>

Contributing

Pull requests and stars are always welcome. For bugs and feature requests, please create an issue

Author

Keith Williams

License

Copyright (c) 2014-2015 Keith Williams
Released under the MIT license

Keywords

FAQs

Package last updated on 03 Jul 2015

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