Link [ pkgsrc | NetBSD | pkgsrc git mirror | PR fulltext-search | netbsd commit viewer ]


   
        usage: [branch:branch] [user:user] [path[@revision]] keyword [... [-excludekeyword [...]]] (e.g. branch:MAIN pkgtools/pkg)




switch to index mode

recent branches: MAIN (1h)  pkgsrc-2024Q1 (11d)  pkgsrc-2023Q4 (57d)  pkgsrc-2023Q2 (90d)  pkgsrc-2023Q3 (169d) 

2024-05-28 15:13:46 UTC Now

2016-05-05 03:59:49 UTC MAIN commitmail json YAML

Add duktape 1.5.1, an MIT-licensed Javascript engine.

This is the command-line tool, which uses the recently added libduktape package.

Duktape is an embeddable Ecmascript E5/E5.1 engine with a focus on
portability and compact footprint.  By integrating Duktape into your
C/C++ program you can easily extend its functionality through
scripting.  You can also build the main control flow of your program
in Ecmascript and use fast C code functions to do heavy lifting.

The terms Ecmascript and Javascript are often considered more or less
equivalent, although Javascript and its variants are technically just
one environment where the Ecmascript language is used.  The line
between the two is not very clear in practice:  even non-browser
Ecmascript environments often provide some browser-specific built-ins.
Duktape is no exception, and provides the commonly used print() and
alert() built-ins.  Even so, we use the term Ecmascript throughout to
refer to the language implemented by Duktape.

(agc)