1
0
Fork 0
easejs/download.html

86 lines
2.9 KiB
HTML

<div class="headline">
<h3>
Version <span class="version"><!--%curver--></span>
<br />
<span class="version date">Released <!--%curver-date--></span>
</h3>
<p class="info">
GNU ease.js can be downloaded in a variety of formats, depending on the
environment in which it will be used. Releases are always stable and
production-ready.
</p>
<ul class="dlopts">
<li>
<a href="https://ftp.gnu.org/gnu/easejs/easejs-latest.tar.gz">Source Tarball</a
>&mdash;Full source code, debugging, development, production, and build files
<a href="https://ftp.gnu.org/gnu/easejs/easejs-latest.tar.gz.sig">(.sig)</a>
</li>
<li>
<a href="https://ftp.gnu.org/gnu/easejs/ease-latest.min.js">Production</a
>&mdash;Minified, 12 kB gzipped (39 kB uncompressed)
<a href="https://ftp.gnu.org/gnu/easejs/ease-latest.min.js.sig">(.sig)</a>
</li>
<li>
<a href="https://ftp.gnu.org/gnu/easejs/ease-latest.js">Development</a
>&mdash;Unminified, 51 kB gzipped (224 kB uncompressed)
<a href="https://ftp.gnu.org/gnu/easejs/ease-latest.js.sig">(.sig)</a>
</li>
</ul>
</div>
<p>
The tarball contains the full source code, combined files for debugging GNU
ease.js itself, combined files for development using GNU ease.js, minified
files for production, and scripts needed to rebuild. The production and
development links contain the JavaScript files needed to run GNU ease.js, the
latter being unminified to allow easily stepping through the code with a
debugger.
</p>
<p>
You should verify the above files using their associated signatures to ensure
that they have not been altered. This can be done by placing both files in the
same directory and running the command:
</p>
<blockquote class="shell">
<span class="shell-start">$</span>
gpg --verify file.sig
</blockquote>
<p>
where <tt>file</tt> is the full filename, such as <tt>easejs-latest.tar.gz</tt>. If you do not have
the public signing key, you may download it by running this command:
</p>
<blockquote class="shell">
<span class="shell-start">$</span>
gpg --keyserver keys.gnupg.net --recv-keys 8EE30EAB
</blockquote>
<h3>npm</h3>
<p>
ease.js is available via npm for use with Node.js. Please be warned that
package signature checks are not performed by npm.
</p>
<blockquote class="shell">
<span class="shell-start">$</span> npm install easejs
</blockquote>
<h3>Manual</h3>
See <a href="manual/Integration.html#Integration">Chapter 1 of the manual</a>
for more information on downloading and integrating ease.js into your own
projects.
<h3>Release Notes</h3>
Below are the release notes for the current release of GNU
ease.js. <a href="release-notes.html">Historical release notes</a> are also
available. GPG signatures for each of the releases and their respective
notes can be found in their respective tags in the <a href="source.html">Git
repository</a>.
<!--%inc .release-current.html-->