Socket
Book a DemoInstallSign in
Socket

shared-component

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

shared-component

Share a component instance inside a window context

latest
Source
npmnpm
Version
1.2.2
Version published
Maintainers
1
Created
Source

shared-component

npm version build status downloads js-standard-style

Share a component instance inside a window context. A component is created once, and cached so the same component is returned on all following calls.

Usage

var shared = require('shared-component')
var html = require('html')

shared.oncreate('header', function (header) {
  return header()
})

var header1 = shared.create('header', createHeader)
var header2 = shared.create('header', createHeader)

console.log(header1 === header2)
// => true

function createHeader () {
  return html`
    <header>I'm a header</header>
  `
}

API

shared.oncreate(name, [cb(create, name)])

Handle the creation of a new component. Only called the first time shared.create(name, create) is called with the matching name.

component = shared.create(name, create)

Create a component instance. If it's the first time that a component is created it calls the corresponding shared.oncreate(name, cb) method. Will return the initialized component on all subsequent calls.

License

MIT

Keywords

share

FAQs

Package last updated on 05 Sep 2017

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