A sample app which is built using LitElement, lit-html, CSS, HTML and JavaScript.
Visit https://online-edu.github.io/lit-movies
To get started:
- Install NodeJS
- Install any good IDE of your choice e.g. Visual Studio Code
- Launch VS Code and open this project (after either by cloning or downloading)
- Open terminal (if VS Code
Ctrl
-backtick
) - Install dependencies:
- App dependencies -
npm install
oryarn install
- App dependencies -
- Run the app
- Serve -
npm start
oryarn start
- Visit -
https://localhost:8000
- Serve -
- Build the app
- Build -
npm run build
oryarn build
- Check
./build
folder
- Build -
- Run the tests
- Hit -
npm test
oryarn test
- Hit -
- Run linter
- Hit -
npm run lint
oryarn lint
- Hit -