I'm in the process of making a javascript application and I want to bring that online, lets call it mydesign. I'm living in the Netherlands so mydesign.nl can be mine. Now is mydesign.com available for sale by some domain broker sales bastards. And those bastards don't accept a first bid lower than 1000$ which is a about ten times of the budget I'm willing to pay. So far so good, it's a sick business model but it's there. Now lets imagine that mydesign.nl is a huge success in the Netherlands and I'm makin tons of profits out of advertisements and other things I'm not yet aware of (I know entering the lotery gives a better chance of earning money, but lets just imagine). Is there a way (licence, legal or otherwise) to prevent the sick owners of mydesign.com to download and steal my javascript app and deploy it on their own site and take the profits of my app?

link|improve this question

5  
There's no 100% guaranteed way. And even no 90% one. You can rethink your app to require some important server-side processing. Server-side code is much harder to steal. – zed_0xff Jun 18 '10 at 9:56
4  
May I suggest you to keep your tone neutral when asking or answering questions? It doesn't add anything when you use swearwords or call names, there are other ways of making your point. – Abel Jun 18 '10 at 10:03
6  
-1: "it's a sick business model but it's there". It's "sick"? How so? Perhaps you should edit your question to eliminate this kind of value judgement and focus on the actual question of copyright protection. – S.Lott Jun 18 '10 at 10:06
3  
I'm with Abel and S.Lott -- dropping the unnecessary invective would improve the question markedly. – T.J. Crowder Jun 18 '10 at 10:07
1  
@dr jerry: Nothing personal, but what you approve of or disapprove of is off topic. Please post that on your blog. Not here. – S.Lott Jun 18 '10 at 19:40
show 3 more comments
feedback

closed as off topic by ChrisF, Philippe Leybaert, Boldewyn, Abel, Rob Levine Jun 18 '10 at 10:20

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

4 Answers

I am not a lawyer. (And I'm answering in the sure and certain knowledge that this question will get closed as off-topic.)

If they take your code and use it on their site and your code is not open licensed, that's a copyright violation and you have legal recourse. The first step is usually a Cease & Desist letter, and from there it's to the courts. Make sure there's a copyright prominently listed both within the code files and on the site's pages (in general, and again IANAL, you automatically have copyright, but let's be explicit) and indicate that all rights are reserved.

A Cease & Desist may well be all you need to do. Once it goes beyond that, be aware that it can become costly. But provided you keep good, written documentation of your business and the development of your code, you should eventually be able to prove your claim (which probably means recovering your legal costs, although the people you end up suing may well work through a shell corporation they can declare bankrupt, making it impossible to recover the costs). The question is whether you run out of money before that happens. :-)

Good luck.

link|improve this answer
+1 And probably some irrefutable means of demonstrating that his app is the original that was ripped off. – Andras Zoltan Jun 18 '10 at 10:01
1  
+1: That's what Copyright is for. Send the code to your government's copyright repository and pay their fee. (In the US it's the Library of Congress and the fee is something like $50) In the code, include the (c) year, name. State that you reserve all your rights. "All Rights Reserved". A simple "you have no rights to my code" letter is often all it takes to assert your rights. It's very simple, which is why copyright exists -- to allow you, the author, to prosecute folks who use your works. – S.Lott Jun 18 '10 at 10:04
@S.Lott your national library accepts code? That is awesome. – Pekka Jun 18 '10 at 10:14
@Pekka: It accepts all copyright materials. Don't be fooled by "Library of Congress" It's not a single building with books on shelves. It's a legally-mandated institution to handle copyright. And books on shelves. – S.Lott Jun 18 '10 at 10:38
feedback

Your JavaScript application is protected by copyright, and must not be copied for use on any other site. The law is on your side here probably everywhere in the world.

The question is whether you can take actual legal action over this if it happens. Most often, it's very difficult because the offender is in a different country, and you'll be spending hundreds if not thousands of dollars in lawyer and court fees before you even start to get them sued.

If you really have reason to worry over copying - I'm not sure you have, seeing as domain squatters try to grab any domain imaginable, it's most likely not an attack on your business idea - check out the various approaches to try and protect JavaScript apps... Not that any of those is perfect, but you may be able to do a lot, and make the stolen copy very hard to maintain, using clever obfuscation.

Oh and that reminds me... I'm off to grab stackexchange.de ;)

link|improve this answer
feedback

Sure there's a legal way: sue the bastards if they do it. Might want to document your development process and make sure you have lots of people who can testify that you had the JavaScript app up and running on such-and-such date.

You could also obfuscate the JS code. That wouldn't prevent the other people from deploying it but would enable you to claim ownership by virtue of your having the non-obfuscated version.

You could also hide some code in the JS that would disable it (or parts of it) if it wasn't running on a page served from your host name. The other folks could change the code, but it would be a little harder if your code was obfuscated and there were multiple tripwires embedded in it.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.