Skip to content

npx create-lit my-app 🛠 pnpm dlx create-lit my-app

License

Notifications You must be signed in to change notification settings

litelement-dev/create-lit

Repository files navigation

create-lit

Downloads per month NPM Version Contributors Contributors

Create lit is a way to create simple-starter-kit lit applications. It offers a modern build setup with Vite.

Quick Start

npx create-lit my-app
cd my-app
npm run dev

Then open http://localhost:3000/ to see your app.

Creating an App

You’ll need to have Node >= 10 on your system

To create a new app, you may choose one of the following methods:

npx

npx create-lit my-app

(npx comes with npm 5.2+ and higher, see instructions for older npm versions)

PNPM

pnpm dlx create-lit my-app

Yarn

yarn create lit my-app

npm

npm init lit my-app

Special mention

Thanks to @uetchy and the repo create-create-app . This repo ports from CJS to ESM from create-create-app