https://github.com/manojc/to-do-polymer
to do app in polymer
https://github.com/manojc/to-do-polymer
Last synced: 2 months ago
JSON representation
to do app in polymer
- Host: GitHub
- URL: https://github.com/manojc/to-do-polymer
- Owner: manojc
- Created: 2016-11-24T05:45:26.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-12-06T16:01:17.000Z (over 8 years ago)
- Last Synced: 2025-01-03T22:34:07.386Z (4 months ago)
- Language: CSS
- Homepage: https://manojc.github.io/to-do-polymer/
- Size: 732 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# \
to do app using polymer js
## Install the Polymer-CLI
First, make sure you have the [Polymer CLI](https://www.npmjs.com/package/polymer-cli) installed. Then run `polymer serve` to serve your application locally.
## Viewing Your Application
```
$ polymer serve
```## Building Your Application
```
$ polymer build
```This will create a `build/` folder with `bundled/` and `unbundled/` sub-folders
containing a bundled (Vulcanized) and unbundled builds, both run through HTML,
CSS, and JS optimizers.You can serve the built versions by giving `polymer serve` a folder to serve
from:```
$ polymer serve build/bundled
```## Running Tests
```
$ polymer test
```Your application is already set up to be tested via [web-component-tester](https://github.com/Polymer/web-component-tester). Run `polymer test` to run your application's test suite locally.