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.1.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

Run tests

npm test

Usage

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

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

Create an HTML tag either closing or opening type.

Examples

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

yields:

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

API

Contributing

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

Author

Keith Williams

License

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


This file was generated by verb on December 24, 2014.

FAQs

Package last updated on 25 Dec 2014

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