UNPKG

4.32 kBMarkdownView Raw
1<p align="center">
2 <a href="#">
3 <img alt="stencil-logo" src="https://github.com/ionic-team/stencil/blob/main/stencil-logo.png" width="60">
4 </a>
5</p>
6
7<h1 align="center">
8 Stencil
9</h1>
10
11<p align="center">
12 A compiler for generating <a href="https://www.webcomponents.org/introduction" target="_blank" rel="noopener noref">Web Components</a>, built by the <a href="https://ionic.io/">Ionic team</a>.
13</p>
14<p align="center">
15 Stencil allows developers to use technologies like TypeScript and JSX to define components, then generate 100% standards-based Web Components that run on both <a href="https://stenciljs.com/docs/browser-support" target="_blank" rel="noopener noref">modern browsers and legacy browsers</a>
16</p>
17
18<p align="center">
19 <a href="https://www.npmjs.com/package/@stencil/core">
20 <img src="https://img.shields.io/npm/v/@stencil/core.svg" alt="StencilJS is released under the MIT license." /></a>
21 <a href="https://github.com/ionic-team/stencil/blob/main/LICENSE.md">
22 <img src="https://img.shields.io/badge/license-MIT-yellow.svg" alt="StencilJS is released under the MIT license." />
23 </a>
24 <a href="https://github.com/ionic-team/stencil/blob/main/.github/CONTRIBUTING.md">
25 <img src="https://img.shields.io/badge/PRs-welcome-brightgreen.svg" alt="PRs welcome!" />
26 </a>
27 <a href="https://twitter.com/stenciljs">
28 <img src="https://img.shields.io/twitter/follow/stenciljs.svg?label=Follow%20@stenciljs" alt="Follow @stenciljs">
29 </a>
30</p>
31
32<h2 align="center">
33 <a href="https://stenciljs.com/docs/getting-started#starting-a-new-project">Quick Start</a>
34 <span> · </span>
35 <a href="https://stenciljs.com/docs/introduction">Documentation</a>
36 <span> · </span>
37 <a href="https://github.com/ionic-team/stencil/blob/main/.github/CONTRIBUTING.md">Contribute</a>
38 <span> · </span>
39 <a href="https://ionicframework.com/blog/tag/stencil/">Blog</a>
40 <br />
41 Community:
42 <a href="https://stencil-worldwide.herokuapp.com">Slack</a>
43 <span> · </span>
44 <a href="https://forum.ionicframework.com/c/stencil/21/">Forums</a>
45 <span> · </span>
46 <a href="https://twitter.com/stenciljs">Twitter</a>
47</h2>
48
49### Getting Started
50
51Start a new project by following our quick [Getting Started guide](https://stenciljs.com/docs/getting-started).
52We would love to hear from you!
53If you have any feedback or run into issues using Stencil, please file an [issue](https://github.com/ionic-team/stencil/issues/new) on this repository.
54
55### Examples
56A Stencil component looks a lot like a class-based React component, with the addition of TypeScript decorators:
57```tsx
58import { Component, Prop, h } from '@stencil/core';
59
60@Component({
61 tag: 'my-component', // the name of the component's custom HTML tag
62 styleUrl: 'my-component.css', // css styles to apply to the component
63 shadow: true, // this component uses the ShadowDOM
64})
65export class MyComponent {
66 // The component accepts two arguments:
67 @Prop() first: string;
68 @Prop() last: string;
69
70 //The following HTML is rendered when our component is used
71 render() {
72 return (
73 <div>
74 Hello, my name is {this.first} {this.last}
75 </div>
76 );
77 }
78}
79```
80
81The component above can be used like any other HTML element:
82
83```html
84<my-component first="Stencil" last="JS"></my-component>
85```
86
87Since Stencil generates web components, they work in any major framework or with no framework at all.
88In many cases, Stencil can be used as a drop in replacement for traditional frontend framework, though using it as such is certainly not required.
89
90### Contributing
91
92Thanks for your interest in contributing!
93Please take a moment to read up on our guidelines for [contributing](https://github.com/ionic-team/stencil/blob/main/.github/CONTRIBUTING.md).
94Please note that this project is released with a [Contributor Code of Conduct](https://github.com/ionic-team/stencil/blob/main/CODE_OF_CONDUCT.md). By participating in this project you agree to abide by its terms.
95
96### Thanks
97Stencil's internal testing suite is supported by the [BrowserStack Open-Source Program](https://www.browserstack.com/open-source)
98<br>
99<a href="https://www.browserstack.com/" target="_blank" rel="noopener noref"><img width="200" src="https://www.browserstack.com/images/layout/browserstack-logo-600x315.png"></a>