Generador de Licencia de Código Abierto
Genera el texto oficial de MIT, Apache-2.0, BSD-3-Clause, GPL-3.0 o Unlicense con tu nombre y año.
Respuesta rápida: Generador de Licencia de Código Abierto: genera el texto oficial de MIT, Apache-2.0, BSD-3-Clause, GPL-3.0 o Unlicense con tu nombre y el año. Funciona íntegramente en el navegador, gratis y sin registro.
Última actualización
Bueno saber
Choosing a license is a legal decision, not a formality. The permissive family (MIT, BSD-3-Clause, Apache-2.0) lets anyone reuse your code in closed-source products, which maximizes adoption. Apache-2.0 adds an explicit patent grant and a NOTICE mechanism, making it the safer choice for anything with patent exposure or corporate contributors. GPL-3.0 is copyleft: derivative works must also be GPL, which protects the freedom of the code but deters some commercial use. The Unlicense effectively places the work in the public domain.
The generated text is the canonical OSI/SPDX wording with only the copyright line filled in — that verbatim wording is what tools like GitHub's license detector and SPDX scanners match against, so resist the temptation to reword it. If you edit the body, automated detection may report your project as "Other" and downstream compliance tools may flag it.
Put the result in a file named exactly LICENSE (or LICENSE.md) at the repository root so GitHub shows the license badge and populates the sidebar automatically. Some licenses expect a second step: Apache-2.0 wants a per-file header referencing the license, and GPL projects conventionally add a short notice to each source file. The year should be the year of first publication, optionally extended to a range as you keep releasing.
Once your license is set, round out the repo with a README and a .gitignore so contributors know how to build and what to leave uncommitted.
Preguntas frecuentes
- ¿Es gratuito el generador de licencias?
- Sí, es gratuito y no requiere registro.
- ¿Son estos los textos de licencia oficiales?
- Sí — los textos de MIT, Apache 2.0, BSD-3, GPL-3 y Unlicense se toman de las fuentes oficiales de OSI / SPDX.
- ¿Qué licencia debo elegir?
- MIT y Apache 2.0 son las más permisivas y ampliamente utilizadas. GPL-3 es copyleft. Unlicense es esencialmente dominio público. Elige en función de cómo deseas que los usuarios puedan redistribuir tu trabajo.
- ¿Se suben mis detalles?
- No — la generación se realiza completamente en tu navegador.
- ¿Dónde debo poner el archivo LICENSE?
- En la raíz de tu repositorio. GitHub lo detecta automáticamente y muestra la insignia de la licencia en la página de tu repositorio.