All Versions
10
Latest Version
Avg Release Cycle
117 days
Latest Release
2589 days ago
Changelog History
Changelog History
-
v8.2.1 Changes
August 10, 2017- โ Add support for Node.js 8.2.1
- โ Remove support for Node.js 4.x and 5.x
- ๐ Upgrade Node.js 6 to 6.11.2 (security patches)
- ๐ Upgrade Node.js 7 to 7.10.1 (security patches)
-
v7.10.1
May 20, 2017 -
v7.10.0
May 07, 2017 -
v6.5.1
September 13, 2016 -
v5.0.2
April 01, 2016 -
v5.0.0
December 23, 2015 -
v4.0.0
September 25, 2015 -
v0.10.1
March 06, 2015 -
v0.10.0
March 02, 2015 -
v0.9.3 Changes
September 21, 2014๐ The 0.9.3 release of Edge.js adds support for caching of C# compilation results, thus increasing the performance of repetitive calls to
edge.func
with the same C# code.This feature is opt-in and enabled by setting the
EDGE_CS_CACHE=1
environment variable.When is it useful
๐ Whenever you are calling
edge.func
with the same C# literal several times in the lifetime of a node process, caching will enable you to greatly improve performance. For example:require('http').createServer(function (req, res) { var f = require('edge').func('async (i) =\> { return "Hello"; }'); f(null, function (error, result) { if (error) throw error; res.send(result); }); }).listen(8080);