Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Flow | 486 | 2 days ago | 1,034 | apache-2.0 | Java | |||||
Vaadin Flow is a Java framework binding Vaadin web components to Java. This is part of Vaadin 10+. | ||||||||||
Platform | 456 | 2 days ago | 23 | September 09, 2022 | 83 | Java | ||||
Vaadin platform 10+ is a Java web development platform based on Vaadin web components. If you don't know to which repository your bug report should be filed, use this and we'll move it to the right one. | ||||||||||
Vaadin Grid | 395 | 90 | 49 | 4 days ago | 250 | October 21, 2022 | apache-2.0 | HTML | ||
vaadin-grid is a free, high quality data grid / data table Web Component. Part of the Vaadin components. | ||||||||||
Router | 363 | 35 | 34 | 2 days ago | 30 | February 12, 2021 | 106 | apache-2.0 | HTML | |
Small and powerful client-side router for Web Components. Framework-agnostic. | ||||||||||
Web Components | 329 | 166 | 189 | a day ago | 191 | December 12, 2022 | 980 | JavaScript | ||
A set of high-quality standards based web components for enterprise web applications. Part of Vaadin 20+ | ||||||||||
Restic Browser | 225 | 13 days ago | 10 | mit | TypeScript | |||||
A GUI to browse and restore restic backup repositories. | ||||||||||
Vaadin Date Picker | 167 | 9 | 4 days ago | 58 | January 17, 2023 | apache-2.0 | HTML | |||
The Web Component providing a date selection field with scrollable month calendar. Part of the Vaadin components. | ||||||||||
Spring | 163 | 43 | 5 | 6 days ago | 17 | July 29, 2019 | 98 | apache-2.0 | Java | |
Spring integration for Vaadin | ||||||||||
Pwa Lit Template | 160 | 2 months ago | 14 | mit | TypeScript | |||||
A template for building Progressive Web Applications using Lit and Vaadin Router. | ||||||||||
Vaadin Combo Box | 118 | 11 | 4 days ago | 75 | January 21, 2022 | 1 | apache-2.0 | HTML | ||
The Web Component for displaying a list of items with filtering. Part of the Vaadin components. |
Vaadin components is an evolving set of high-quality web components for business web applications.
Install the components that you need from npm:
npm install @vaadin/grid
Import the component's JavaScript module, use the component in your HTML, and control it with JavaScript:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Vaadin example</title>
</head>
<body>
<!-- Use web components in your HTML like regular built-in elements. -->
<vaadin-grid theme="row-dividers" column-reordering-allowed multi-sort>
<vaadin-grid-selection-column auto-select frozen></vaadin-grid-selection-column>
<vaadin-grid-sort-column width="9em" path="firstName"></vaadin-grid-sort-column>
<vaadin-grid-sort-column width="9em" path="lastName"></vaadin-grid-sort-column>
<vaadin-grid-column width="9em" path="address.city"></vaadin-grid-column>
</vaadin-grid>
<!-- Vaadin web components use standard JavaScript modules. -->
<script type="module">
// Importing the following modules registers <vaadin-grid> and its column
// elements so that you can use them in this page.
import '@vaadin/grid/vaadin-grid.js';
import '@vaadin/grid/vaadin-grid-selection-column.js';
import '@vaadin/grid/vaadin-grid-sort-column.js';
// Use component's properties to populate data.
const grid = document.querySelector('vaadin-grid');
fetch('https://demo.vaadin.com/demo-data/1.0/people?count=200')
.then((res) => res.json())
.then((json) => (grid.items = json.result));
</script>
</body>
</html>
Serve your HTML with a development server that supports bare module specifiers, such as @web/dev-server
:
npm i -g @web/dev-server
web-dev-server --node-resolve --open
This project contains components for Vaadin 20+. Please see individual repositories for older Vaadin versions.
The components below are licensed under the Apache License 2.0.
The components below are licensed under Vaadin Commercial License and Service Terms and available as part of the Vaadin Pro Subscription.
Component | npm version (latest) | npm version (next) | Issues |
---|---|---|---|
<vaadin-board> |
Issues | ||
<vaadin-charts> |
Issues | ||
<vaadin-cookie-consent> |
Issues | ||
<vaadin-crud> |
Issues | ||
<vaadin-grid-pro> |
Issues | ||
<vaadin-map> |
Issues | ||
<vaadin-rich-text-editor> |
Issues |
Desktop:
Mobile:
Check out our design system documentation.
Are you looking for an example project to get started? Visit start.vaadin.com to create a Vaadin app.
For help and support questions, please use our community chat.
Cross-browser Testing Platform and Open Source <3 Provided by Sauce Labs.
Read the contributing guide to learn about our development process, how to propose bugfixes and improvements, and how to test your changes to Vaadin components.
See the Development guide for how to set up and develop this project locally.
For specific package(s), check the LICENSE file under the package folder.