JavaScript minifier.
JavaScript minifier.
.. code:: python
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
NB: jsmin
makes no attempt to be compatible with
ECMAScript 6 / ES.next / Harmony <http://wiki.ecmascript.org/doku.php?id=harmony:specification_drafts>
.
The current maintainer does not intend to add ES6-compatibility. If you would
like to take over maintenance and update jsmin
for ES6, please contact
Tikitu de Jager <mailto:tikitu+jsmin@logophile.org>
. Pull requests are also
welcome, of course, but my time to review them is somewhat limited these days.
If you're using jsmin
on ES6 code, though, you might find the quote_chars
parameter useful:
.. code:: python
from jsmin import jsmin with open('myfile.js') as js_file: minified = jsmin(js_file.read(), quote_chars="'"`")
from pypi <https://pypi.python.org/pypi/jsmin/>
_from latest-release on github <https://github.com/tikitu/jsmin/tree/latest-release/jsmin>
_from master on github <https://github.com/tikitu/jsmin/>
_Python 2 support was removed in version 3.0.0. If you need to support Python 2, please use version 2.2.2 with setuptools<58.
Issues <https://github.com/tikitu/jsmin/issues>
_ and Pull requests <https://github.com/tikitu/jsmin/pulls>
_
will be gratefully received on Github. The project used to be hosted
on bitbucket <https://bitbucket.org/dcs/jsmin/>
_ 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.)
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 3.
Currently:
.. image:: https://travis-ci.org/tikitu/jsmin.png?branch=latest-release
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 3.
Currently:
.. image:: https://travis-ci.org/tikitu/jsmin.png?branch=master
If master
is failing don't use it, but as long as latest-release
is passing the pypi release should be ok.
Dave St.Germain <https://bitbucket.org/dcs>
_ (original author)Hans weltar <https://bitbucket.org/hansweltar>
_Tikitu de Jager <mailto:tikitu+jsmin@logophile.org>
_ (current maintainer)Nick Alexander <https://bitbucket.org/ncalexan>
_Gennady Kovshenin <https://github.com/soulseekah>
_Matt Molyneaux <https://github.com/moggers87>
_Albert Wang <https://github.com/albertyw>
_Ben Bradshaw <https://github.com/serenecloud>
_Breaking Change: Removed support for Python 2
Removed usage of use_2to3 in setup.py
Add license headers to code files (fixes i#17)
Remove mercurial files (fixes #20)
return x / 1;
Merge #13: Preserve "loud comments" starting with /*!
These are commonly used for copyright notices, and are preserved by various other minifiers (e.g. YUI Compressor).
Fix #9: Premature end of statement caused by multi-line comment not adding newline.
Fix #10: Removing multiline comment separating tokens must leave a space.
Refactor comment handling for maintainability.
Fix #6: regex literal matching comment was not correctly matched.
Refactor regex literal handling for robustness.
Reset issue numbering: issues live in github from now on.
Fix #1: regex literal was not recognised when occurring directly after {
.
Issue numbers here and below refer to the bitbucket repository.
Fix #17: bug when JS starts with comment then literal regex.
First changelog entries; see README.rst for prior contributors.
Expose quote_chars parameter to provide just enough unofficial Harmony support to be useful.