Informational only. Not legal advice. Read more.
SPDX · MIT Open source » OSI-approved » FSF-libre » SPDX-listed

MIT License

A short, permissive license. The de-facto default for many open-source ecosystems.

Nickname: MIT Steward: Massachusetts Institute of Technology (historical) Copyleft: None (permissive) First published: 1988 SPDX page ↗ Official ↗

The MIT License is one of the shortest and most permissive open-source licenses. It lets anyone use, copy, modify, merge, publish, distribute, sublicense, and sell copies of the software, provided they include the original copyright notice and license text.

It is a good default for libraries and frameworks you want adopted as widely as possible. If you care about protecting against patent claims from contributors, consider Apache-2.0 instead — the patent grant is the main difference.

How to apply

Add a file named LICENSE in the root of your project containing the full MIT license text, and make sure the copyright line names the right author and year. No per-file header is required, but many projects add a short SPDX identifier at the top of each file:

// SPDX-License-Identifier: MIT

Permissions

  • Commercial use
    The licensed material and derivatives may be used for commercial purposes.
  • Modification
    The licensed material may be modified.
  • Distribution
    The licensed material may be distributed.
  • Private use
    The licensed material may be used and modified in private.

Conditions

  • License and copyright notice
    Include a copy of the license and copyright notice with the material.

Limitations

  • Liability
    This license includes a limitation of liability.
  • Warranty
    This license explicitly states that it does NOT provide any warranty.
Full license text
MIT License

Copyright (c) [year] [fullname]

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

Raw text also available at /license-texts/MIT.txt — handy for curl.

Similar licenses

Upgrade path

If you find this license too limited, these are common next steps:

Notable users

  • jQuery
  • Rails
  • Angular
  • Next.js
Notice

Informational only

Nothing on yourlicense.ca is legal advice. Confirm with a lawyer before you license anything that matters.

Read the disclaimer →