This repo goes with the Build your first LitElement element codelab.
You'll need to install some command-line tools to manage dependencies and to run the demo.
-
Download and install Node(recommends v10.x) from https://nodejs.org/. Node includes the node package manager command,
npm. -
Clone this repo:
https://github.com/Polymer-Japan/litelement-first-element.git -
Change directory to your local repo and install dependencies with
npm:cd litelement-first-elements npm install -
To preview your element, run
npm startfrom the repo directory:npm startOpen
localhost:8081/components/icon-toggle/demo/in your browser. (Note that the path usesicon-toggle—the component name listed in this element'spackage.jsonfile—rather than the actual directory name.)
npm start calls polymer serve.
If you're wondering what polymer serve does, see Run tests interactively
in the Polymer docs.