All Projects → abdonrd → abdonrd.com

abdonrd / abdonrd.com

Licence: MIT license
My little personal website

Programming Languages

HTML
75241 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to abdonrd.com

Polydev
Automatic web components profiling in chrome devtools
Stars: ✭ 118 (+637.5%)
Mutual labels:  polymer, web-components
Polymer Skeleton
💀 Skeleton for Polymer 3 app with Webpack, PostCSS and Service Workers ready.
Stars: ✭ 185 (+1056.25%)
Mutual labels:  polymer, web-components
Cleverstyle Framework
CleverStyle Framework is simple, scalable, fast and secure full-stack PHP framework
Stars: ✭ 150 (+837.5%)
Mutual labels:  polymer, web-components
Gulp Vulcanize
Concatenate a set of Web Components into one file
Stars: ✭ 101 (+531.25%)
Mutual labels:  polymer, web-components
mc-viewer
🌐🏠 A Web Component for visualizing Minecraft schematics
Stars: ✭ 25 (+56.25%)
Mutual labels:  polymer, web-components
Polymer Build
Moved to Polymer/tools monorepo
Stars: ✭ 107 (+568.75%)
Mutual labels:  polymer, web-components
Polymer Analyzer
Moved to Polymer/tools monorepo
Stars: ✭ 162 (+912.5%)
Mutual labels:  polymer, web-components
Vaadin Charts
Vaadin Charts is a feature-rich interactive graph library that answers the data visualization needs of modern web applications
Stars: ✭ 47 (+193.75%)
Mutual labels:  polymer, web-components
ibm-toolbar
Horizontal toolbar containing items that can be used for label, navigation, search and actions
Stars: ✭ 18 (+12.5%)
Mutual labels:  polymer, web-components
Storybook
📓 The UI component explorer. Develop, document, & test React, Vue, Angular, Web Components, Ember, Svelte & more!
Stars: ✭ 67,445 (+421431.25%)
Mutual labels:  polymer, web-components
Polymer Bundler
Moved to Polymer/tools monorepo
Stars: ✭ 1,206 (+7437.5%)
Mutual labels:  polymer, web-components
eslint-plugin-lit
lit-html support for ESLint
Stars: ✭ 90 (+462.5%)
Mutual labels:  polymer, web-components
Flip Clock
A flip clock, timer and countdown made with Polymer
Stars: ✭ 69 (+331.25%)
Mutual labels:  polymer, web-components
Hot Table
Handsontable - Best Data Grid Web Component with Spreadsheet Look and Feel.
Stars: ✭ 114 (+612.5%)
Mutual labels:  polymer, web-components
L2t Paper Slider
Polymer element for displaying slides in a carousel
Stars: ✭ 53 (+231.25%)
Mutual labels:  polymer, web-components
Gwt Polymer Elements
Polymer Web Components for GWT. A collection of Material Design widgets for desktop and mobile.
Stars: ✭ 153 (+856.25%)
Mutual labels:  polymer, web-components
Paper Timezone
Polymer based timezone selection component
Stars: ✭ 19 (+18.75%)
Mutual labels:  polymer, web-components
Contactlab Ui Components
DEPRECATED - Basic UI components for ContactLab UX design pattern library
Stars: ✭ 31 (+93.75%)
Mutual labels:  polymer, web-components
Polyserve
Moved to Polymer/tools monorepo
Stars: ✭ 194 (+1112.5%)
Mutual labels:  polymer, web-components
page-title
A Polymer element for easily updating a webpage's title, such as in a SPA.
Stars: ✭ 13 (-18.75%)
Mutual labels:  polymer, web-components

Build Status

abdonrd.com

My little personal website built with Polymer.

Prerequisites

First, install the dependencies:

yarn install

Start the development server

This command serves the app at http://127.0.0.1:8081 and provides basic URL routing for the app:

yarn run start

Build

The yarn run build command builds your Polymer application for production, using build configuration options provided by the command line or in your project's polymer.json file.

You can configure your polymer.json file to create multiple builds. This is necessary if you will be serving different builds optimized for different browsers. You can define your own named builds, or use presets. See the documentation on building your project for production for more information.

The project is configured to create three builds using the three supported presets:

"builds": [
  {
    "preset": "es5-bundled"
  },
  {
    "preset": "es6-bundled"
  },
  {
    "preset": "es6-unbundled"
  }
]

Builds will be output to a subdirectory under the build/ directory as follows:

build/
  es5-bundled/
  es6-bundled/
  es6-unbundled/
  • es5-bundled is a bundled, minified build with a service worker. ES6 code is compiled to ES5 for compatibility with older browsers.
  • es6-bundled is a bundled, minified build with a service worker. ES6 code is served as-is. This build is for browsers that can handle ES6 code - see building your project for production for a list.
  • es6-unbundled is an unbundled, minified build with a service worker. ES6 code is served as-is. This build is for browsers that support HTTP/2 push.

See the documentation on the polymer.json specification and building your Polymer application for production.

Preview the build

This command serves your app. Replace build-folder-name with the folder name of the build you want to serve.

yarn run serve build/build-folder-name/

Run lint

This command will run ESLint:

yarn run lint

Run tests

This command will run Web Component Tester against the browsers currently installed on your machine:

yarn run test

This command will build the project to verify the integration:

yarn run test:integration
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].