Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm loading a node library in script and immediately after loading some customization that depends on that library:

var somelib = require('somelib');

// some customizations made to
// somelib's methods
require('./somelib.custom');

somelib.SomeObject = ...
^
ReferenceError: somelib is not defined

I keep getting an exception since the loading is done asynchronously and the second require happens before the first is namespaced correctly. What's a good way to resolve this? thanks.

EDIT: My original code

I'm trying to create a PNG image from json data using fabric.js node package (building on the article in package site). This is done by loading the server-side fabric canvas with JSON data that was originally generated on the client, then writing to a file stream:

var path     = require('path');
var fs       = require('fs');
var fabric   = require('fabric').fabric;
require('./fabric.custom');

var canvas   = fabric.createCanvasForNode(400, 400);
var outfile  = fs.createWriteStream("image.png");
var filepath = "/path/to/file.json";

fs.readFile(filepath, 'utf8', function(err, json) {
  canvas.loadFromJSON(json, function() {
    var stream = canvas.createPNGStream();
    stream.on('data', function(chunk) {
      outfile.write(chunk);
    });
  });
});

The "fabric.custom" file holds several custom fabric canvas objects that override some fabric prototype defaults. They work well on the client, and are needed to properly render the canvas. It looks something like this:

fabric.TextBox = fabric.util.createClass(fabric.Text, {

  type: 'text-box',
  // more object specific stuff ...
});

Thanks.

share|improve this question
4  
Node's require method is synchronous, so I'm not sure what's happening in your case. – JohnnyHK Feb 10 at 15:51
somelib is a package ?? Please put your original code so that we can help. – user568109 Feb 10 at 16:01
Yeah, somelib is actually fabric.js, an npm package - I was trying to avoid specifics to make things simpler. See my edits above. – sa125 Feb 10 at 19:05
you can change stream.on('data', function(chunk) { outfile.write(chunk); }); to stream.pipe(outfile); – Gal Ben-Haim Feb 10 at 21:34

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.