문제

Can I bundle my proprietary JavaScript code with MIT licensed libraries (e.g. JQuery, AngularJS) into the same file, distribute it via HTTP but disallow my users to use my own code as an MIT licensed code?

This way I could minimize the number of browser requests, and reduce errors due to network errors. I don't want to let my users copy, modify and reuse my own code outside of my website.

도움이 되었습니까?

해결책

Yes. Just specify the terms of your license with the accompanying code.

The MIT license doesn't have any provisions in it that forces your code to be MIT licensed, nor does it prevent you from relicensing the MIT-licensed code in any way you see fit.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 softwareengineering.stackexchange
scroll top