Which free source code license should I pick?

I have created a Javascript library from scratch and would like to release it under a license. Here are my requirements: - Credit to me is included in all programs that take use of the library - People are allowed to sell or release software using the library, as long as credits go to me. What license should I pick? GPL, LGPL, MIT...?


MIT/BSD fits your requirements. GPL does as well, but GPL adds the extra condition that anyone redistributing your code has to provide the source code (including any modifications they've made) to the people they're redistributing to.

It's mostly a philosophical choice, so I'd recommend reading up about both licenses on Wikipedia.

链接地址: http://www.djcxy.com/p/79540.html

上一篇: 分配非GPL代码

下一篇: 我应该选择哪个免费的源代码许可证?