Socket
Book a DemoInstallSign in
Socket

elastomer

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

elastomer

A web-component library for commonjs based on rivet

latest
Source
npmnpm
Version
2.0.3
Version published
Weekly downloads
1
-66.67%
Maintainers
1
Weekly downloads
 
Created
Source

elastomer

js-standard-style travis npm downloads

A web-component library for commonjs based on rivet

Overview

ALPHA version - incomplete doc / incomplete tests

  • Create web-components in commonjs
  • Elastomer is like a light polymer + rivets

Getting Started

Install the module with: npm install elastomer --save

Getting Started

'use strict'
const elastomer = require('nova-elastomer')

require('nova-elastomer/webcomponents-lite.js') // Optional

class Foobar extends elastomer.HTMLElastomer {
  initialize (elasto) {
    elasto.html = `
    <h2>{{title}}</h2>
    <ul>
      <li nv-each-item="list">{{item.label}}</li>
    </ul>
    <content></content>`
    elasto.css = `:host {}`
  }

  link (scope, elasto) {
    scope.list = [
      { label: 'A' },
      { label: 'B' }
    ]
    elasto.mapAttribute('title')
  }
}

module.exports = elastomer('nova-foobar', { prototype: Foobar.prototype })

Now you can use the new <nova-foobar> tag

<div>
  <nova-foobar title="Hello world">
    <p>The future is now</p>
  </nova-foobar>
</div>

The pseudo-dom produced looks like:

<div>
  <nova-foobar title="Hello world">
    <h2>Hello world</h2>
    <ul>
      <li>A</li>
      <li>B</li>
    </ul>
    <p>The future is now</p>
  </nova-foobar>
</div>

License: MIT

js-standard-style

Keywords

webcomponent

FAQs

Package last updated on 22 Feb 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