On 25/09/2013, at 13:53, Ashish Negi wrote:

> The error is in sizeof(source)-1. It should be source.length() for my 
> changes. 
> 
> std::string source = "(function(x) { " + std::string(codeData.get()) + " 
> return x; });"; 
>   Local<String> script_source = String::New(source.c_str(), sizeof(source) - 
> 1); 
> 
> 
> But still i can not use nodejs require function :( 

Put this in your main .js module, *before* the require() of your native .node 
module:

(function(){return this})().require= require;

Untested...
-- 
( Jorge )();

-- 
-- 
Job Board: http://jobs.nodejs.org/
Posting guidelines: 
https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines
You received this message because you are subscribed to the Google
Groups "nodejs" group.
To post to this group, send email to nodejs@googlegroups.com
To unsubscribe from this group, send email to
nodejs+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/nodejs?hl=en?hl=en

--- 
You received this message because you are subscribed to the Google Groups 
"nodejs" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to nodejs+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to