These examples are designed to help you get started building with Lit!
Each example has instructions within its own README file!
yarn install
For Browser examples, you need to create a .env.local
file inside nextjs app.
cd apps/nextjs
cp .env.local.example .env.local
For Nodejs examples, you need to create a .env
file inside selected example.
cp .env.example .env
Run the nodejs tests for all examples
yarn test:node
Run the browser tests for all examples
yarn test:browser
Run all supported browser examples in nextjs
cd apps/nextjs
yarn dev