JavaScript minifier. PLEASE UPDATE TO VERSION >= 2.0.6. Older versions have a serious bug related to comments.
Project description
JavaScript minifier.
Usage
from jsmin import jsmin
with open('myfile.js') as js_file:
minified = jsmin(js_file.read())
You can run it as a commandline tool also:
python -m jsmin myfile.js
As yet, jsmin makes no attempt to be compatible with ECMAScript 6 / ES.next / Harmony. If you’re using it on Harmony code, though, you might find the quote_chars parameter useful:
from jsmin import jsmin
with open('myfile.js') as js_file:
minified = jsmin(js_file.read(), quote_chars="'\"`")
Where to get it
install the package from pypi
get the latest release from latest-release on github
get the development version from master on github
Contributing
Issues and Pull requests will be gratefully received on Github. The project used to be hosted on bitbucket and old issues can still be found there.
If possible, please make separate pull requests for tests and for code: tests will be added to the latest-release branch while code will go to master.
Unless you request otherwise, your Github identity will be added to the contributor’s list below; if you prefer a different name feel free to add it in your pull request instead. (If you prefer not to be mentioned you’ll have to let the maintainer know somehow.)
Build/test status
Both branches are tested with Travis: https://travis-ci.org/tikitu/jsmin
The latest-release branch (the version on PyPI plus any new tests) is tested against CPython 2.6, 2.7, 3.2, and 3.3. Currently:
If that branch is failing that means there’s a new test that fails on the latest released version on pypi, with no fix yet released.
The master branch (development version, might be ahead of latest released version) is tested against CPython 2.6, 2.7, 3.2, and 3.3. Currently:
If master is failing don’t use it, but as long as latest-release is passing the pypi release should be ok.
Contributors (chronological commit order)
Dave St.Germain (original author)
Tikitu de Jager (current maintainer)
Changelog
v2.1.3 (2015-08-09) Tikitu de Jager
Reset issue numbering: issues live in github from now on.
Fix #1: regex literal was not recognised when occurring directly after {.
v2.1.2 (2015-07-12) Tikitu de Jager
Issue numbers here and below refer to the bitbucket repository.
Fix #17: bug when JS starts with comment then literal regex.
v2.1.1 (2015-02-14) Tikitu de Jager
Fix #16: bug returning a literal regex containing escaped forward-slashes.
v2.1.0 (2014-12-24) Tikitu de Jager
First changelog entries; see README.rst for prior contributors.
Expose quote_chars parameter to provide just enough unofficial Harmony support to be useful.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file jsmin-2.1.3.tar.gz
.
File metadata
- Download URL: jsmin-2.1.3.tar.gz
- Upload date:
- Size: 10.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fe72bf36959793f3242c8443a12ca3528357b6d19a76a2306527c2357710b88c |
|
MD5 | 1bd656bcfcd0b0de4609115a3bae1fbd |
|
BLAKE2b-256 | 3d14c0cc3982b7110059f9ed493ebdb7c0d8436c13d0305e2ff950f5a72f21f6 |