An article on integrating extern functions (html5)

Monkey Archive Forums/Monkey Discussion/An article on integrating extern functions (html5)

Shinkiro1(Posted 2016) [#1]
Hey guys,

I started a blog. Maybe those who don't already know how to do it will find it useful:
http://frameland.at/how-to-use-extern-functions-in-monkey-x-html5/

Cheers


ImmutableOctet(SKNG)(Posted 2016) [#2]
Looks good. JavaScript output is one of the best things about Monkey 1.

Not only do you get access to your browser's convenient debugger (Even 'DebugStop' works), but you also get much shorter build times. This is what WebCC leverages, and how I'm able to test large projects without tearing my hair out waiting for MSVC or GCC.

You can do some pretty crazy stuff with Monkey's external JS functionality. Heck, you can do a lot just with the official 'dom' module from within Monkey. Even parts of the API that aren't covered by that module can be easily added without leaving Monkey.


Leo Santos(Posted 2016) [#3]
Awesome, thanks!