UNPKG

9.41 kBMarkdownView Raw
1[![npm][npm-badge]][npm-badge-url]
2[![Build & Test](https://github.com/ionic-team/stencil/workflows/Build%20&%20Test/badge.svg)](https://github.com/ionic-team/stencil/actions)
3[![license][npm-license]][npm-license-url]
4
5
6# Stencil: A Compiler for Web Components and PWAs
7
8```bash
9npm init stencil
10```
11
12[Stencil](https://stenciljs.com/) is a simple compiler for generating Web Components and progressive web apps (PWA). Stencil was built by the [Ionic Framework](http://ionicframework.com/) team for its next generation of performant mobile and desktop Web Components.
13
14Stencil combines the best concepts of the most popular frontend frameworks into a compile-time rather than run-time tool. It takes TypeScript, JSX, a tiny virtual DOM layer, efficient one-way data binding, an asynchronous rendering pipeline (similar to React Fiber), and lazy-loading out of the box, and generates 100% standards-based Web Components that run on both [modern browsers and legacy browsers](#browser-support) back to Internet Explorer 11.
15
16Stencil components are just Web Components, so they work in any major framework or with no framework at all. In many cases, Stencil can be used as a drop in replacement for traditional frontend frameworks given the capabilities now available in the browser, though using it as such is certainly not required.
17
18Stencil also enables a number of key capabilities on top of Web Components, in particular Server Side Rendering (SSR) without the need to run a headless browser, pre-rendering, and objects-as-properties (instead of just strings).
19
20*Note: Stencil and [Ionic](https://ionicframework.com/) are completely independent projects. Stencil does not prescribe any specific UI framework, but Ionic is the largest user of Stencil (today!)*
21
22
23## Why Stencil?
24
25Stencil is a new approach to a popular idea: building fast and feature-rich apps in the browser. Stencil was created to take advantage of major new capabilities available natively in the browser, such as Custom Elements v1, enabling developers to ship far less code and build faster apps that are compatible with any and all frameworks.
26
27Stencil is also a solution to organizations and library authors struggling to build reusable components across a diverse spectrum of frontend frameworks, each with their own component system. Stencil components work in Angular, React, Ember, and Vue as well as they work with jQuery or with no framework at all, because they are just plain HTML elements.
28
29Compared to using Custom Elements directly, inside of every Stencil component is an efficient Virtual DOM rendering system, JSX rendering capabilities, asynchronous rendering pipeline (like React Fiber), and more. This makes Stencil components more performant while maintaining full compatibility with plain Custom Elements. Think of Stencil as creating pre-baked Custom Elements as if you wrote in those features yourself.
30
31
32## Getting Started
33
34To create a new project using an interactive cli, run:
35
36```bash
37npm init stencil
38```
39
40To start developing your new Stencil project, run:
41
42```bash
43npm start
44```
45
46
47## Creating components
48
49Stencil components are plain ES6/TypeScript classes with some decorator metadata.
50
51Create new components by creating files with a `.tsx` extension, such as `my-component.tsx`, and place them in `src/components`.
52
53```typescript
54import { Component, Prop } from '@stencil/core';
55
56@Component({
57 tag: 'my-component',
58 styleUrl: 'my-component.css'
59})
60export class MyComponent {
61
62 @Prop() first: string;
63
64 @Prop() last: string;
65
66 render() {
67 return (
68 <div>
69 Hello, my name is {this.first} {this.last}
70 </div>
71 );
72 }
73}
74```
75
76Note: the `.tsx` extension is required, as this is the standard for TypeScript classes that use JSX.
77
78To use this component, just use it like any other HTML element:
79
80```html
81<my-component first="Stencil" last="JS"></my-component>
82```
83
84
85## Naming Components
86
87When creating new component tags, we recommend _not_ using `stencil` in the component name (ex: `<stencil-datepicker>`). This is because the generated component has little to nothing to do with Stencil; it's just a web component!
88
89Instead, use a prefix that fits your company or any name for a group of related components. For example, all of the [Ionic](https://ionicframework.com/docs/) generated web components use the prefix `ion`.
90
91
92## Hosting the app
93
94Stencil components run directly in the browser through script includes just like normal Custom Elements (because they are just that!), and run by using the tag just like any other HTML component:
95
96Here's an example `index.html` file that runs a Stencil app:
97
98```html
99<!DOCTYPE html>
100<html>
101<head>
102 <title>My App</title>
103 <script src="build/app.js"></script>
104</head>
105<body>
106 <my-component first="Stencil" last="JS"></my-component>
107</body>
108</html>
109```
110
111
112## API
113
114The API for stencil closely mirrors the API for Custom Elements v1.
115
116### Components
117
118| Decorator | Description |
119| -------------- | --- |
120| `@Component()` | Indicate a class is a Stencil component. |
121| | |
122| `@Prop()` | Creates a property that will exist on the element and be data-bound to this component. |
123| `@State()` | Creates a local state variable that will not be placed on the element. |
124| `@Method()` | Expose specific methods to be publicly accessible. |
125
126
127## Why "Stencil?"
128
129A Stencil is a tool artists use for drawing perfect shapes easily. We want Stencil to be a similar tool for web developers: a tool that helps web developers build powerful Web Components and apps that use them, but without creating non-standard runtime requirements.
130
131Stencil is a tool developers use to create Web Components with some powerful features baked in, but it gets out of the way at runtime.
132
133[Using Web Components in Ionic - Polymer Summit 2017](https://youtu.be/UfD-k7aHkQE)
134
135
136## Browser Support
137
138Web Components, specifically Custom Elements, are natively supported in Chrome and Safari and are coming to both Edge and Firefox. A dynamic polyfill loader is already included in order to only load the polyfills for the browsers that are missing specific features.
139
140 - Chrome (and all Chromium based browsers)
141 - Safari
142 - Edge
143 - Firefox
144 - IE 11
145
146
147## Polyfills
148
149Stencil includes a subset of the `core-js` polyfills for old browsers like IE11, `fetch` and conditionally downloads the [Custom Elements v1](https://github.com/webcomponents/polyfills/tree/master/packages/custom-elements) only when it's needed for modern browsers (EDGE and old versions of Firefox.)
150
151
152### Internet Explorer 11
153
154Browser that does not support native ESM (at the moment, only IE11 and older) will download a subset of [`core-js`](https://github.com/zloirock/core-js).
155
156This subset is generated using the [`core-js-builder` tool](https://github.com/zloirock/core-js/tree/master/packages/core-js-builder) with the following configuration:
157
158```js
159require('core-js-builder')({
160 targets: 'ie 11',
161 modules: [
162 'es',
163 'web.url',
164 'web.url.to-json',
165 'web.url-search-params',
166 'web.dom-collections.for-each'
167 ],
168 blacklist: [
169 'es.math',
170 'es.date',
171 'es.symbol',
172 'es.array-buffer',
173 'es.data-view',
174 'es.typed-array',
175 'es.reflect',
176 'es.promise'
177 ]
178});
179```
180
181In addition, the following set of polyfills are also included:
182
183 - [Promise](https://github.com/stefanpenner/es6-promise)
184 - [fetch()](https://github.com/github/fetch)
185 - [CSS variables](https://github.com/ionic-team/stencil/tree/master/src/client/polyfills/css-shim): We implemented our own CSS variables polyfill that integrates into the Stenciljs runtime.
186
187### All browsers
188
189Some modern browsers today like Edge does not include native support for web components, in that case we conditionally load the [Custom Elements v1](https://github.com/webcomponents/polyfills/tree/master/packages/custom-elements) polyfill.
190
191
192## Related
193
194 - [Stencil Documentation](https://stenciljs.com/)
195 - [Stencil Worldwide Slack](https://stencil-worldwide.herokuapp.com)
196 - [Ionic](https://ionicframework.com/)
197 - [Ionic Worldwide Slack](http://ionicworldwide.herokuapp.com/)
198 - [Ionicons](http://ionicons.com/)
199 - [Capacitor](https://capacitor.ionicframework.com/)
200
201
202## License
203
204 - [MIT](https://raw.githubusercontent.com/ionic-team/stencil/master/LICENSE)
205
206
207[npm-badge]: https://img.shields.io/npm/v/@stencil/core.svg
208[npm-badge-url]: https://www.npmjs.com/package/@stencil/core
209[npm-license]: https://img.shields.io/npm/l/@stencil/core.svg
210[npm-license-url]: https://github.com/ionic-team/stencil/blob/master/LICENSE
211[circle-badge]: https://circleci.com/gh/ionic-team/stencil.svg?style=shield
212[circle-badge-url]: https://circleci.com/gh/ionic-team/stencil
213[browserstack-badge]: https://www.browserstack.com/automate/badge.svg?badge_key=WVNVbkRJdDBJQnBEMzZuWUdlMEZuTjlPUm9sOHZsSVNkUlJTRkJVQkx0ST0tLTFhbk5jRUNEVWxJL1J0SVR0WUFndnc9PQ==--90c84981a2ed2ede760ca48fbfc3fdd5b71d3e5e
214[browserstack-badge-url]: https://www.browserstack.com/automate/public-build/WVNVbkRJdDBJQnBEMzZuWUdlMEZuTjlPUm9sOHZsSVNkUlJTRkJVQkx0ST0tLTFhbk5jRUNEVWxJL1J0SVR0WUFndnc9PQ==--90c84981a2ed2ede760ca48fbfc3fdd5b71d3e5e
215[appveyor-badge]: https://ci.appveyor.com/api/projects/status/92d75dgkohgyap5r/branch/master?svg=true
216[appveyor-badge-url]: https://ci.appveyor.com/project/Ionitron/stencil/branch/master