Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Doesn't work with node.js #50

Closed
GoogleCodeExporter opened this issue May 6, 2015 · 4 comments
Closed

Doesn't work with node.js #50

GoogleCodeExporter opened this issue May 6, 2015 · 4 comments

Comments

@GoogleCodeExporter
Copy link

What steps will reproduce the problem?
1. create a node app
2. var diff = require("./lib/diff_match_patch.js");
3. run the app

What is the expected output? What do you see instead?

The app should run. Instead I get "ReferenceError: window is not defined". 
Looks like this lib is assuming a browser environment.


What version of the product are you using? On what operating system?

Looks like diff_match_patch_20110603. OS X 10.6.8.


Please provide any additional information below.


Original issue reported on code.google.com by *lo...@row27.com on 12 Jul 2011 at 6:58

@GoogleCodeExporter
Copy link
Author

Just delete the last six lines of diff_match_patch_uncompressed.js and it will 
work fine (since it's server-side there's no advantage to using the illegible 
compressed version).

I'll wrap those lines in an if statement that checks for window and update the 
file shortly.

Thanks!

Original comment by neil.fra...@gmail.com on 13 Jul 2011 at 6:43

  • Changed state: Started

@GoogleCodeExporter
Copy link
Author

Thanks for getting back to me. I did manage to get that part working.

Question? How do I use this with Node's require statement? 

if I create a simple node script:

var dmp = require("./diff_match_patch_uncompressed.js");
console.log(dmp);
var differ = new dmp();

When trying to run it I get:

TypeError: object is not a function
    at Object.CALL_NON_FUNCTION_AS_CONSTRUCTOR (native)


dmp logs as an empty object. I am fairly new to node, but I believe the problem 
is with the file not having exports or the functions defined as this.foo = 
function () { blah; }.

Any help would be great. Thanks so much!

Original comment by *lo...@row27.com on 13 Jul 2011 at 6:55

@GoogleCodeExporter
Copy link
Author

I'm afraid I've never used node.js and have no insights as to what's wrong.  
Check with the node.js community.

But do report back what you find so that the next person doesn't have to 
stumble through the same issues.

Original comment by neil.fra...@gmail.com on 13 Jul 2011 at 7:34

@GoogleCodeExporter
Copy link
Author

Should be fixed now.  Simply changed 'window' to 'this'.

Original comment by neil.fra...@gmail.com on 16 Jul 2011 at 3:05

  • Changed state: Fixed

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant