2.0.0 • Published 2 years ago

uland-isomorphic v2.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

uland-isomorphic

Actions Status

Isomorphic exports of uland

npm install uland-isomorphic

Usage

Use uland or uland-ssr from a single import identifier depending on then environment you are running.

import {Component, render, html, useState} from 'uland-isomorphic';

const Counter = Component((initialState) => {
  const [count, setCount] = useState(initialState);
  return html`
  <button onclick=${() => setCount(count + 1)}>
    Count: ${count}
  </button>`;
});

// basic example, show two independent counters
render(document.body, () => html`
  <div>
    A bounce of counters.<hr>
    ${Counter(0)} ${Counter(1)}
  </div>
`);

How

While @webreflection recomends require-overrides in the offical documentation, that requires special flags or transforms to work.

uland-isomorphic works by utilizing environment specific exports fields so that you can have dependency injection at the built-in module resolver layer. It supports the following export fields:

  • main (cjs node)
  • browser (cjs browser)
  • exports.import (esm node)
  • exports.reqire (cjs node)
  • exports.browser (esm browser)

License

MIT

1.1.0

2 years ago

2.0.0

2 years ago

1.0.0

3 years ago