Skip to content

Vulcanizer for Polymer projects written in Python

Notifications You must be signed in to change notification settings

bslatkin/pyvulcanize

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

64 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

pyvulcanize

This is still a work in progress.

A Python implementation of the vulcanize tool that is part of the Polymer project.

Why Python? Because my server is written in Python. I don't want to run node.js on the side during development just to regenerate vulcanized files on the fly. Oh-- and I want vulcanized files during development because the number of static resources I need to load for a large project gets excruciatingly slow to transfer, even on localhost (there are just too many HTTP requests to make).

Using the tool

Install it:

pip install vulcanize

Vulcanize an index file (and all its dependencies) into an output file:

vulcanize path/to/index.html -o path/to/output.html

Run a server that vulcanizes on every reload:

vulcanize path/to/index.html -p 8080

Known limitations

Bugs:

  • @import in linked stylesheets won't be inlined
  • url() or @import in linked stylesheets won't be adjusted for relative paths

Missing features:

  • Output a concatenated JavaScript file
  • Generate source maps for the JavaScript files

Test the tool during development

Read this if you want to edit this code and contribute. Please send edits as pull requests.

1. Dependencies

This section makes me want to scream, but alas this is how it is.

Go into the example directory:

cd example

Have a copy of npm installed. On a Mac you can use brew to do this:

brew install npm

Have the npm package bower installed:

npm install bower

That will create a directory called node_modules somewhere in your project directory. Reach into that directory and run the bower binary:

./node_modules/bower/bin/bower install

If that worked, you'll see a file named bower_components/webcomponentsjs/webcomponents.js in the example directory.

2. Using the JS tool

This is how you use the official version of vulcanize to produce the desired output.

In the example directory use the vulcanize tool (npm install vulcanize) to generate the expected output. Note you need to use the "content security policy" flag to have it generate an external JS file.

 ./node_modules/vulcanize/bin/vulcanize --csp -o official_test.html ./index.html

3. Using the Python tool

Go to the main project directory. Make sure you have virtualenv installed for Python 2.7:

pip install virtualenv

Create a new virtual environment for the project in the project's root directory.

virtualenv .

Activate the virtual environment:

source bin/activate

Then install all of the requirements for the Python part of the project:

pip install -r ./requirements.txt

From the project root directory, you should be able to run the commandline tool with:

python -m vulcanize ./example/index.html -o ./example/test.html

To see if it worked, run a Python server locally:

python -m SimpleHTTPServer 8080 ./example

And then visit http://localhost:8080/test.html. If you see a big green square with JS on it, you're good.

You can also install the module using pip for local development. This makes it easy to keep running the commandline tool as vulcanize but have it use the latest version of the code as you change it.

pip install -e .

4. Building a new version

Create a new tarball:

python setup.py sdist

Upload it!

twine upload ./dist/path-to-the-new-tarball

About

Written by Brett Slatkin

About

Vulcanizer for Polymer projects written in Python

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published