https://github.com/engineerapart/stencil-forms
Forms Library for Stencil
https://github.com/engineerapart/stencil-forms
Last synced: 10 months ago
JSON representation
Forms Library for Stencil
- Host: GitHub
- URL: https://github.com/engineerapart/stencil-forms
- Owner: engineerapart
- License: mit
- Created: 2018-06-03T06:02:11.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-06-03T06:20:45.000Z (about 8 years ago)
- Last Synced: 2025-08-19T19:01:19.910Z (11 months ago)
- Language: TypeScript
- Size: 611 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: readme.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README

# Stencil Forms
Stencil Forms aims to make using forms in Stencil more straightforward. Uusing stencil-forms, instead of doing this:
```
Yargh!!
```
You can do this:
```
Yay!
```
# Stencil
Stencil is a compiler for building fast web apps using Web Components.
Stencil combines the best concepts of the most popular frontend frameworks into a compile-time rather than run-time tool. Stencil 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 in any browser supporting the Custom Elements v1 spec.
Stencil components are just Web Components, so they work in any major framework or with no framework at all.
## Getting Started
```bash
npm i @engineerapart/stencil-forms
or
yarn add @engineerapart/stencil-forms
```
and simply import somewhere near the init point of your app (such as the globals folder):
```bash
import '@engineerapart/stencil-forms';
```
FYI to avoid confusion, this package is also published under:
`stencil-form`
`stencil-forms`