All Projects → biotope → biotope-element

biotope / biotope-element

Licence: other
A web component

Programming Languages

typescript
32286 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to biotope-element

rollup-plugin-lit-css
Moved to https://github.com/bennypowers/lit-css
Stars: ✭ 35 (+133.33%)
Mutual labels:  webcomponents
bootue
❄️ Bootstrap + Vue 2 - 100% Components
Stars: ✭ 14 (-6.67%)
Mutual labels:  webcomponents
mm-components
Music Markups components
Stars: ✭ 50 (+233.33%)
Mutual labels:  webcomponents
create-evergreen-app
Get up and running with an evergreen web application development stack designed by, and for, today's modern web.
Stars: ✭ 16 (+6.67%)
Mutual labels:  webcomponents
event-driven-web-components-realworld-example-app
Exemplary real world application built with Vanilla JS Web Components in an Event Driven Architecture
Stars: ✭ 55 (+266.67%)
Mutual labels:  webcomponents
polymer-ui-router
UI-router wrapper for Web Components
Stars: ✭ 24 (+60%)
Mutual labels:  webcomponents
nightingale
Data visualisation web components for the life sciences.
Stars: ✭ 95 (+533.33%)
Mutual labels:  webcomponents
danmaku-player
An HTML5 danmaku video player for real-time image processing using WebGl and Web Components.融合了webgl和web components的实时图像处理弹幕播放器
Stars: ✭ 40 (+166.67%)
Mutual labels:  webcomponents
plastic-bag
An open source library to work with micro frontends.
Stars: ✭ 22 (+46.67%)
Mutual labels:  webcomponents
bce.design
minimal magic, minimal tooling, essential dependencies, high productivity, no transpilations and no migrations. The Web Components starter ships with integrated lit-html, redux-toolkit and vaadin router components.
Stars: ✭ 67 (+346.67%)
Mutual labels:  webcomponents
modulor-html
Missing template engine for Web Components
Stars: ✭ 36 (+140%)
Mutual labels:  webcomponents
vaadin-dialog
High quality web component for modal dialogs. Part of the Vaadin platform.
Stars: ✭ 15 (+0%)
Mutual labels:  webcomponents
scheduler-component
A Web Component wrapper for FullCalendar library that uses Polymer version 2.0 and ES6.
Stars: ✭ 24 (+60%)
Mutual labels:  webcomponents
app-starter
Angular mono-repo (Ionic/Capacitor/StencilJS/Web Component) app starter for supporting cross platform apps.
Stars: ✭ 75 (+400%)
Mutual labels:  webcomponents
lego
🚀 Web-components made lightweight & Future-Proof.
Stars: ✭ 69 (+360%)
Mutual labels:  webcomponents
crab
JavaScript library for building user interfaces with Custom Elements, Shadow DOM and React like API
Stars: ✭ 22 (+46.67%)
Mutual labels:  webcomponents
every-color-picker
Color picker components. Framework independent.
Stars: ✭ 53 (+253.33%)
Mutual labels:  webcomponents
chartjs-web-components
the web components for chartjs
Stars: ✭ 50 (+233.33%)
Mutual labels:  webcomponents
hackernews-example
An NX Hacker News clone with real-time updates and animations.
Stars: ✭ 56 (+273.33%)
Mutual labels:  webcomponents
file-fire
Simple way to upload and download files from Firebase Storage.
Stars: ✭ 13 (-13.33%)
Mutual labels:  webcomponents

Biotope Element

Build Status codecov

biotope-element is a library to create Web Components in a simple way, taking advantage of simple yet powerful concepts from other frontend libraries to empower you, the developer, and your clients' needs - be them integration with popular CMSs or developing amazing design-systems to be used anywhere.

biotope-element uses mostly vanilla web technologies and is built with the intention of being used for component development and not page assembly. This means we dedicate ourselves to making sure that page assembly libraries like React, Vue or Angular have the best possible experience when using our components. This also means that every piece of knowledge you have about HTMLElements is applicable when working with biotope-element.

Documentation

You can find the full documentation here.

In order to contribute to the documentation you can start a local server with npm start and then start editing the files in docs.

Installation

You can install the biotope element in your project using npm:

npm install @biotope/element

or yarn

yarn add @biotope/element

After that, import it in your components like so:

import Component from '@biotope/element';

Alternatively you can use unpkg to insert biotope-element into your HTML for quick testing through our minified ES5 file available here.

Your first component

To use biotope-element, you have to extend it with your custom class.

After defining your class, you have to call the register function. Here's a minimal example of a working component:

// my-button.js
import Component from '@biotope/element';

export class MyButton extends Component {
  render() {
    return this.html`
      Hello World 🐤
    `;
  }
}

MyButton.componentName = 'my-button';
MyButton.register();

After that you can use it in your html like so:

<script src="my-button.js"></script>
<my-button></my-button>

This will result in the following html:

<script src="my-button.js"></script>
<my-button>
  Hello world 🐤
</my-button>

📝 Note: It's irrelevant where the script is placed. But remember that the component will only start to render after the script is parsed and the component is registered.

Compatibility and Polyfills

Natively, Web Components are not supported by all browsers - this includes biotope-element. You can check out a list of compatible browsers using caniuse.

To get it to work on almost all non-dead browsers, you can use these polyfills. You can also checkout their npm package or you can simply put a script pointing to unpkg which will load only the necessary polyfills.

⚠️ Important: Remember to make sure that the polyfill is fully loaded before attempting to register any component. This is done via the WebComponentsReady event or by a blocking script tag.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].