--- layout: v2 title: Download bodyclass: download-page --- ## Download Leaflet
Version Description
Leaflet 0.7.5 Stable version, released on November 18, 2013 and last updated on Sep 2, 2015.
Leaflet 1.0 beta 1 Last 1.0 beta, released on July 14, 2015.
Leaflet 1.0-dev In-progress version, developed on the master branch.
[View Changelog](https://github.com/Leaflet/Leaflet/blob/master/CHANGELOG.md) Note that the master version can contain incompatible changes, so please read the changelog carefully when upgrading to it. ### Using a Hosted Version of Leaflet The latest stable Leaflet release is hosted on a CDN — to start using it straight away, place this in the `head` of your HTML code: ### Using a Downloaded Version of Leaflet Inside the archives downloaded from the above links, you will see four things: - `leaflet.js` - This is the minified Leaflet JavaScript code. - `leaflet-src.js` - This is the readable, unminified Leaflet JavaScript, which is sometimes helpful for debugging. - `leaflet.css` - This is the stylesheet for Leaflet. - `images` - This is a folder that contains images referenced by `leaflet.css`. It must be in the same directory as `leaflet.css`. Unzip the downloaded archive to your website's directory and add this to the `head` of your HTML code: ### Leaflet Source Code These download packages above only contain the library itself. If you want to download the full source code, including unit tests, files for debugging, build scripts, etc., you can download it from the GitHub repository. ### Building Leaflet from the Source Leaflet build system is powered by the [Node.js](http://nodejs.org) platform, which installs easily and works well across all major platforms. Here are the steps to set it up: 1. [Download and install Node](http://nodejs.org) 2. Run the following commands in the command line:
npm install -g jake
npm install
Now that you have everything installed, run `jake build` inside the Leaflet directory. This will combine and compress the Leaflet source files, saving the build to the `dist` folder. ### Building a Custom Version of Leaflet To make a custom build of the library with only the things you need, open `build/build.html` page of the Leaflet source code contents, choose the components (it figures out dependencies for you) and then run the command generated with it.