https://github.com/nuclei/web-component-skeleton
A skeleton repo for building vanilla web components
https://github.com/nuclei/web-component-skeleton
web-components
Last synced: about 1 month ago
JSON representation
A skeleton repo for building vanilla web components
- Host: GitHub
- URL: https://github.com/nuclei/web-component-skeleton
- Owner: nuclei
- License: mit
- Created: 2017-05-04T14:31:32.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-08-09T10:31:15.000Z (almost 9 years ago)
- Last Synced: 2025-08-30T09:35:17.987Z (10 months ago)
- Topics: web-components
- Language: TypeScript
- Size: 194 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Web-Component-Skeleton
> An empty repo for starting your vanilla web component
## usage
Just fork or clone the repo and start hacking.
### Tests
By default `npm test` assures you stick to the `standardjs` rules, catches typescript errors and validates your readme using `standard-readme`.
```
$ npm test
```
### Build
Run `npm run build` to convert your source file defined in the `package.json` as `package.config.src` into a compiled js file defined by `package.main`.
```
$ npm run build
$ npm run build:watch
```