Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Dart vs Polymer vs Bootstrap

What's the difference between those three things?

As far as I understand:

  • Bootstrap is a library which helps you to use nice pre-made elements on your webpage

  • Dart is another language which helps you to create apps faster than those made with JS (but can be converted to JS)

  • Polymer is something like bootstrap, but let you to create all those elements (bootstrap is a collection of ready elements, but polymer allows you to create custom elements)

Do I understand correctly? What are the differences between them?

like image 328
mysliwiec_tech Avatar asked May 03 '14 16:05

mysliwiec_tech


1 Answers

Bootstrap is a CSS framework with a set of CSS styles for many common use cases and also a set of common elements that have more advanced functionality built with JavaScript.

Polymer has nothing in common with Bootstrap (beside that it is for the web).

Polymer is a framework that is based on some new web standards like custom elements, templates, HTML imports and others and polyfills to make these features available to browsers without native support. While you can build custom elements with JavaScript alone, Polymer builds on top of it to improve the developer experience and saves a lot of boilerplate code and adds features like mustache data binding.

Custom Elements is an emerging web standard that allows to build your own tags like the existing <input> tag or a <video> tag where <your-advanced-tag> hides some more or less complex implementation consisting of HTML, CSS and JS (or Dart). In your HTML you just add <your-advanced-tag> and the page contains the full functionality. Polymer.dart is a Dart port of the Polymer.js framework (for 1.0 it will probably be just a wrapper on top of Polymer.js because Dart VM in Chrome was dropped and building a real Dart implementation doesn't provide much additional value).

While there are already a lot of Polymer elements available, Polymer is just the framework not the elements built on top of it. For more information take a look at http://www.polymer-project.org/

Dart is a language that aims to support developers building complex web applications, but you can also build server or command line applications with Dart (building Android and iOS applications is experimental/work in progress see https://github.com/domokit/sky_sdk) This is great because you can build all parts of a complex client/server app in Dart and probably share a lot of code between client and server. Dart has a VM that allows to run Dart applications on Windows, MacOS, Linux, Android, ... The VM is also already integrated into Dartium (a Chromium derivative) which allows to execute browser applications without a compiling step which leads to great developer experience.

like image 183
Günter Zöchbauer Avatar answered Nov 08 '22 08:11

Günter Zöchbauer