1.0.6 • Published 1 year ago

create-webcomp v1.0.6

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year 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

1 year ago

1.0.5

1 year ago

1.0.4

1 year ago

1.0.3

1 year ago

1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago