Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/emoriarty/generator-polymer-cordova
Scaffold out a Polymer project
https://github.com/emoriarty/generator-polymer-cordova
Last synced: 5 days ago
JSON representation
Scaffold out a Polymer project
- Host: GitHub
- URL: https://github.com/emoriarty/generator-polymer-cordova
- Owner: emoriarty
- Fork: true (yeoman/generator-polymer)
- Created: 2015-10-06T18:22:40.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2015-11-28T18:01:16.000Z (about 9 years ago)
- Last Synced: 2024-11-23T17:39:55.378Z (19 days ago)
- Language: JavaScript
- Homepage: http://polymer-project.org
- Size: 737 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- Contributing: contributing.md
Awesome Lists containing this project
- awesome-cordova - generator-polymer-cordova
README
[![NPM version](http://img.shields.io/npm/v/generator-polymer-cordova.svg?style=flat)](http://npmjs.org/generator-polymer-cordova)
[![NPM downloads](http://img.shields.io/npm/dm/generator-polymer-cordova.svg?style=flat)](http://npmjs.org/generator-polymer-cordova)
[![Build Status](http://img.shields.io/travis/emoriarty/generator-polymer-cordova/master.svg?style=flat)](https://travis-ci.org/emoriarty/generator-polymer-cordova)
[![Dependency Status](http://img.shields.io/david/emoriarty/generator-polymer-cordova.svg?style=flat)](https://david-dm.org/emoriarty/generator-polymer-cordova)## Yeoman generator for Polymer projects
## Introduction
[Polymer](http://www.polymer-project.org/) is a library of polyfills and sugar which enable the use of Web Components in modern browsers. The project allows developers to build apps using the platform of tomorrow and inform the W3C of places where in-flight specifications can be further improved.
`generator-polymer-cordova` provides Polymer scaffolding using [Yeoman](http://yeoman.io) (a scaffolding tool for the web), letting you easily create and customize Polymer (custom) elements via the command-line and import them using HTML Imports. This saves you time writing boilerplate code so you can start writing up the logic to your components straight away.
## Features
* A Polymer app scaffold based in [Polymer Starter Kit](https://developers.google.com/web/tools/polymer-starter-kit/) but modified in order to add cordova support.
* Sub-generator to create Polymer elements for your app
* Quick deploy to GitHub pages
* All the goodness of [seed-element](https://github.com/polymerelements/seed-element) (docs & landing page for your element)
* [web-component-tester](https://github.com/Polymer/web-component-tester) support## Issues
This generator clones [Polymer Starter Kit](https://github.com/PolymerElements/polymer-starter-kit) and [seed-element](https://github.com/polymerelements/seed-element). If you're having issues with the template files generated for those projects, please raise them on those repos as they are the canonical source.
## Installation
Install the generator
`npm install -g generator-polymer-cordova`Make a new directory and cd into it
`mkdir -p my-project && cd $_`Scaffold a new Polymer project:
`yo polymer-cordova`## Generators
Available generators:
- [polymer-cordova (aka polymer:app)](#app)
- [polymer-cordova:element](#element-alias-el)
- [polymer-cordova:seed](#seed)
- [polymer-cordova:gh](#gh)**Note: Generators are to be run from the root of your app**
### App
Sets up a new Polymer app, generating all the boilerplate you need to get started.Example:
```bash
yo polymer-cordova
```### Element (alias: El)
Generates a polymer element in `app/elements` and optionally appends an import to `app/elements/elements.html`.Example:
```bash
yo polymer-cordova:element my-element# or use the alias
yo polymer-cordova:el my-element
```**Note: You must pass in an element name, and the name must contain a dash "-"**
One can also include element dependencies to be imported. For instance, if you're creating a `fancy-menu` element which needs to import `paper-button` and `paper-checkbox` as dependencies, you can generate the file like so:
```bash
yo polymer-cordova:el fancy-menu paper-button paper-checkbox
```#### Options
```
--docs, include iron-component-page docs with your element and demo.html
--path, override default directory structure, ex: --path foo/bar will put your element in app/elements/foo/bar
```### Seed
Generates a reusable polymer element based on the [seed-element workflow](https://github.com/polymerelements/seed-element). **This should only be used if you're creating a standalone element repo that you intend to share with others via bower.** If you're just building a Polymer app, stick to the [Element](#element-alias-el) generator.To preview your new element you'll want to use the [polyserve](https://github.com/PolymerLabs/polyserve) tool.
Example:
```bash
mkdir -p my-foo && cd $_
yo polymer-cordova:seed my-foo
polyserve
```### Gh
Generates a Github pages branch for your [seed-element](#seed).**This requires that you have [SSH keys setup on GitHub](https://help.github.com/articles/generating-ssh-keys/)**.
If your documentation or demo pages have dependencies declared as devDependencies in `bower.json`, they will be included in your GitHub pages branch.
Example:
```bash
cd my-foo
yo polymer:gh
```If, for some reason, you don't want the devDependencies, use the `--nodevdeps` option.
## Testing
The project generated by `yo polymer` contains support for [web-component-tester](https://github.com/Polymer/web-component-tester). The following commands are included:
Run local tests (in terminal):
```bash
gulp test:local
```Run remote tests with [SauceLabs](https://saucelabs.com/):
```bash
gulp test:remote
```See the [web-component-tester readme](https://github.com/Polymer/web-component-tester#configuration) for configuration options.
## Gotchas
### The `elements.html` file
The `app` generator will produce an `elements.html` file where you can place your imports. This file will be [vulcanized](https://www.polymer-project.org/articles/concatenating-web-components.html) when you run the default `gulp` task. **You'll want to make sure that elements.html is the only import in your index.html file, otherwise there's a good chance you'll accidentally load Polymer twice and break the app**.
## Contribute
See the [contributing docs](https://github.com/yeoman/yeoman/blob/master/contributing.md)
When submitting an issue, please follow the [guidelines](https://github.com/yeoman/yeoman/blob/master/contributing.md#issue-submission). Especially important is to make sure Yeoman is up-to-date, and providing the command or commands that cause the issue.
## License
[BSD license](http://opensource.org/licenses/bsd-license.php)