You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

DEVELOPMENT.md 2.7KB

Developing Vaadin Core Elements

Each Vaadin element has it’s own GitHub repository, where development is done. The vaadin-core-element project is just a top-level bundle without actual production code.

Familiarize yourself with the code and try to follow the same syntax conventions to make it easier for us to accept your pull requests.

The following instructions are common for all Vaadin core elements. Replace vaadin-combo-box with any other element in the following examples. Check the element readmes for any special development notes.

Getting the code

  1. Clone the element project from GitHub:
  $ git clone https://github.com/vaadin/vaadin-combo-box.git
  1. Install Node. It comes bundled with npm, which is needed to install other tooling.

  2. Install Bower using npm:

  $ npm install -g bower

If you encounter permission issues when running npm see the article about fixing npm permissions on npmjs.com

  1. Use Bower to install the dependencies of the element:
  $ cd vaadin-combo-box
  $ bower install

Running demos

  1. Install polyserve using npm:
  $ npm install -g polyserve
  1. Start a local server in the project root directory:
  $ cd vaadin-combo-box
  $ polyserve
  1. Open the following URLs in your browser:

Running tests

Install Web Component Tester using npm:

$ npm install -g web-component-tester

Tests can be run with the wct task from the element directory:

$ cd vaadin-combo-box
$ wct

You can also run and debug the tests manually:

$ cd vaadin-combo-box
$ polyserve

You should include new tests in your pull requests if you add features to the elements or if you are fixing a bug.

Documentation

We follow the same style guide as Polymer.

Contributor License Agreement

When you send a pull request to any of our repositories, you get an automated comment response about the CLA. It will notify you if you haven’t signed the CLA yet, and in that case instructions how to do it. You need to do this once per earch repository. Before we can accept any of your code contributions, you need to sign the CLA.