Skip to content

Latest commit

 

History

History
30 lines (18 loc) · 1.11 KB

README.md

File metadata and controls

30 lines (18 loc) · 1.11 KB

Your first LitElement element

This repo goes with the Build your first LitElement element codelab.

Running the codelab

You'll need to install some command-line tools to manage dependencies and to run the demo.

  1. Download and install Node(recommends v10.x) from https://nodejs.org/. Node includes the node package manager command, npm.

  2. Clone this repo:

    https://github.com/Polymer-Japan/litelement-first-element.git
    
  3. Change directory to your local repo and install dependencies with npm:

    cd litelement-first-elements
    npm install
    
  4. To preview your element, run npm start from the repo directory:

    npm start
    

    Open localhost:8081/components/icon-toggle/demo/ in your browser. (Note that the path uses icon-toggle—the component name listed in this element's package.json file—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.