1.0.6 • Published 3 years ago

create-webcomp v1.0.6

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

create-webcomp

This package allows you to quickly scaffold a new web components project powered by Vite.

Scaffolding Your First Web Components Project

With NPM:

npm create webcomp@latest

With PNPM:

pnpm create webcomp

Then follow the prompts. You can use . for the project name to scaffold in the current directory.

Available Web Components Structure/Templates

  1. Standalone JavaScript
└── components
    ├── MyApp.js
    └── MyCounter.js
  1. CSS + JavaScript
└── components
    ├── my-app
    │   ├── index.js
    │   └── style.css
    └── my-counter
        ├── index.js
        └── style.css
  1. HTML + CSS + JavaScript
└── components
    ├── my-app
    │   ├── index.html
    │   ├── index.js
    │   └── style.css
    └── my-counter
        ├── index.html
        ├── index.js
        └── style.css
1.0.6

3 years ago

1.0.5

3 years ago

1.0.4

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago