I'm writing an application that is largely javascript based. The javascript uses a java applet on the page to work as a socket bridge. However, if someone was to steal the javascript code I have written, would that infringe on copyright laws? What if I attached a license at the top of the .js file?
I was thinking of writing the application in Flash, but would rather not - is there any other way to have a closed source web application (java applets can be decompiled so that doesn't count). I don't want to have to use server-side PHP to accomplish this either.
|
|
|
||
|
|
|
|
You automatically hold the copyright to anything you create, including code. The difference between this automatic copyright and going and filing a copyright with the government is all about proof. If someone steals your code and you sue, you're going to have a difficult time proving it to be your own unless you have a legitimate filed copyright. In my own opinion though, unless you're a large corporation, it's not at all worth it to file any type of patent or copyright for code. It's costly and we're still in a stage where it's difficult to claim a right to software innovations anyway. |
||
|
|
|
|
Chances are, no javascript you or I will ever write will be worth stealing. If it is worth stealing, someone will figure out how to steal it anyway. The only way is to keep private data/algorithms on the server, but if it's that good, people will reverse engineer it anyway. Put a license at the top of your script and if you ever catch someone using your code you're covered legally. |
||
|
|
|
Any code you write regardless of which language (whether it is Java or JavaScript) can be covered by a license. However, given that JavaScript is distributed in plain-text form via the web, you may have a difficult time enforcing the license. Basically, it's almost an honor system. |
||
|
|
|
|
Legally speaking you can get it copyrighted, but that's not going to stop someone from ganking the file off your web site if they want to take a look at it, which I think is what you're more concerned about. Because of the nature of how javascript is deployed in a web environment, it makes it difficult to obscure it from the end user, should they want to acquire it. |
||||
|
|
|
There is nothing called not copyrightable thing. If you really did it, then its yours and you can hold the copyright. |
||
|
|
|
|
Under the Berne convention, copyright is attached to something when you author it. So yes, your Javascript code is copyrighted. A license is (usually) used to grant people more rights than they have under copyright. It cannot take rights away (unless by mutual consent, but I'm not a lawyer so take what I say with a tonne of salt), all it can do is prevent someone from using the copyrighted work if they don't accept the conditions of the license. But that's not the license taking rights away, the the license not conferring extra rights, in which case standard copyright rights are still in control. Of course, no amount of copyright or licensing will stop your code from being stolen. Nor will any technological solution keep out those who are determined. You have to ask yourself, is your code truly so valuable that you want to battle with the forces of evil. I don't worry about anyone stealing my code. I make a living by servicing my clients, the software is really just one way of doing that. And, if I am being brutally honest, I don't doubt someone could write better versions of the apps I produce. Good luck to them. I'd rather spend my time keeping my clients happy. |
|||
|
