- Chrome provides a very light weight development editor.This editor is now in beta version.
- This editor can be downloaded from below URL.
- In this Demo, “We will explore this Chrome Developer Editor“.
- Below screenshot shows creating new project popup window.
- Below screenshot shows the supported project types by this editor.
- Below screenshot shows the generated project structure for a Polymer custom type element.
- Below screenshot shows the option for running index.html file on right click.
- Below code shows the default code generated by this boiler plate .
<!DOCTYPE html>
<html>
<head>
<title>x-mynameelement Info</title>
<script src="../platform/platform.js"></script>
<link rel="import" href="../polymer/polymer.html">
<link rel="import" href="../core-component-page/core-component-page.html">
</head>
<body unresolved>
<core-component-page></core-component-page>
</body>
</html>