What is required to install and operate Polymer without Node or NPM?

The polymer looks very good, and I would like to try, but for our project, Node is not part of our platform, and this cannot be. What is required to create a Polymer project that does not require Node or NPM?

+4
source share
2 answers

The polymer does not require node or npm per se. We recommend using Bower (requires nodejs) to get the elements, since it handles dependency management.

Alternatively, you can use git to extract material. We have a pull -all.sh script that gets everything in one design: http://www.polymer-project.org/resources/tooling-strategy.html#git

Moving forward, we are working on solutions for providing .zip file collections of elements. Keep in touch!

+7
source

To run the polymer, you need a basic web server. The web server can reside in Node.js or in Python or on any HTTP web server.

0
source

Source: https://habr.com/ru/post/1544419/


All Articles