Skip to content

hartenfels/Javascript-SpiderMonkey

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

55 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Build Status

NAME

JavaScript::SpiderMonkey - glue for Mozilla's JavaScript interpreter

SYNOPSIS

This is still really hard in development you don't even know, so this interface is still in flux.

use JavaScript::SpiderMonkey;

my $thing = js-eval('({
    add : function(a, b) { return a + b; },
})')

say $thing.add( 1,   2 ); # 3
say $thing.add('1', '2'); # 12

TODO

  • Nicer errors

  • Implement console.log and friends

  • Use LibraryMake and compile this sanely

  • Write more tests

  • Test multiple SpiderMonkey versions

  • Calling JavaScript from Perl6:

  • → Also allow calling things on the global object

  • → Convert hashes and arrays

  • Writing to JavaScript object and array elements

  • Call Perl6 from JavaScript somehow (https://github.com/jnthn/zavolaj#function-arguments)

  • Add documentation

AUTHOR

Carsten Hartenfels

COPYRIGHT AND LICENSE

This software is copyright (c) 2015 by Carsten Hartenfels. This program is distributed under the terms of the Artistic License 2.0. For further information, please see LICENSE or visit http://www.perlfoundation.org/attachment/legal/artistic-2_0.txt.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages