Socket
Socket
Sign inDemoInstall

webcomponent

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

webcomponent

lightweight helpers for constructing web components


Version published
Weekly downloads
1.5K
increased by472.62%
Maintainers
1
Weekly downloads
 
Created
Source

webcomponent

Lightweight utilities for constructing Web Components

Installation

Install via npm, for packaging with a bundler such as Webpack or Browserify:

npm install --save webcomponent

If your target environment does not have native support for Web Components, you should include a separate polyfill such as webcomponents.js.

Usage

Register web components by extending the WebComponent class instead of HTMLElement:

import WebComponent from 'webcomponent';
class MyWidget extends WebComponent {
  attachedCallback() {
    // ...
  }

  get myattr() {
    // ...
  }
  // etc
}
document.registerElement('my-widget', MyWidget);

WebComponent is a thin wrapper around HTMLElement which

Built-in helper methods:

getJSONAttribute(attrName [, errorHandler]): parse an attribute which has been serialized as JSON, e.g.,

<my-widget data-magic-numbers="[1,2,3]"></my-widget>
this.getJSONAttribute('data-magic-numbers') // [1, 2, 3]

If no errorHandler is passed, JSON-parsing errors will result in null being returned.

isAttributeEnabled(attrName): check whether a boolean-like attribute is 'enabled', taking into account usages such as:

<my-widget awesome=true>    <!-- enabled -->
<my-widget awesome>         <!-- enabled -->
<my-widget awesome=false>   <!-- disabled -->
<my-widget>                 <!-- disabled -->

License

MIT

Keywords

FAQs

Package last updated on 21 Apr 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