https://github.com/jefiozie/stencil-drawer
A example on how to implement a drawer with Stencil
https://github.com/jefiozie/stencil-drawer
example stencil stenciljs webdevelopment
Last synced: 9 months ago
JSON representation
A example on how to implement a drawer with Stencil
- Host: GitHub
- URL: https://github.com/jefiozie/stencil-drawer
- Owner: Jefiozie
- License: mit
- Created: 2019-06-13T19:56:25.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-06-13T20:03:31.000Z (about 7 years ago)
- Last Synced: 2025-02-09T17:30:28.567Z (over 1 year ago)
- Topics: example, stencil, stenciljs, webdevelopment
- Language: TypeScript
- Size: 5.86 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README

# Example building a drawer with Stencil
This is a starter project that demo's how to build a drawer component with Stencil.
## Getting Started
To start building a new web component using Stencil, clone this repo to a new directory:
```bash
git clone https://github.com/Jefiozie/stencil-drawer.git my-component
cd my-component
git remote rm origin
```
and run:
```bash
npm install
npm start
```
To build the component for production, run:
```bash
npm run build
```
To run the unit tests for the components, run:
```bash
npm test
```