├── .gitignore ├── Espresso.sln ├── LICENSE ├── OLD_README.md ├── README.md ├── Samples └── js_tools │ ├── esprima │ └── esprima.js │ ├── lokijs │ └── lokijs.js │ ├── tsc2_1 │ ├── tsc.js │ └── tsc_espr.js │ ├── tsc2_5 │ ├── tsc.js │ └── tsc_espr.js │ └── tsc3_3 │ ├── tsc.js │ └── tsc_espr.js ├── TestNode_NetCore ├── Program.cs └── TestNode_NetCore.csproj ├── Tests ├── NodeJsEngineHelper │ ├── JsAttributes.cs │ ├── JsTypeDefinitionBuilder.cs │ ├── NodeJsEngineHelper.cs │ ├── NodeJsEngineHelper.projitems │ └── NodeJsEngineHelper.shproj ├── OpenSSLCertUtils │ ├── OpenSSLCertUtils.csproj │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── openssl.cnf ├── Test2 │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Test2.csproj │ └── Tests │ │ ├── Exceptions.cs │ │ ├── Globals.cs │ │ ├── Objects.cs │ │ └── TestClass.cs ├── Test3 │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Test3.csproj │ ├── lib.d.ts │ └── lib.es5.d.ts ├── TestEspressoCore │ ├── AssemblyInfo.cs │ ├── Program.cs │ ├── TestEspressoCore.csproj │ └── Tests │ │ ├── Test1.cs │ │ ├── TestAttribute.cs │ │ └── TestInfo.cs ├── TestJsConsole │ ├── Properties │ │ └── AssemblyInfo.cs │ └── TestJsConsole.csproj ├── TestNode01 │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── TestNode01.csproj │ └── TestNode01.sln ├── TestNode01_NetworkClients │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── TestNode01_NetworkClients.csproj ├── TestNode01_SimpleApp │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── TestNode01_SimpleApp.csproj ├── TestNode02 │ ├── Libuv_Interop │ │ ├── Ext │ │ │ ├── NativeBufferPool.cs │ │ │ └── Span.cs │ │ └── UV │ │ │ ├── Buffer.cs │ │ │ ├── Error.cs │ │ │ ├── Handle.cs │ │ │ ├── Interop.cs │ │ │ ├── Listener.cs │ │ │ ├── Loop.cs │ │ │ ├── Request.cs │ │ │ ├── Stream.cs │ │ │ └── Tcp.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── TestLibUV.cs │ └── TestNode02.csproj └── TestNode03_NotStable │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ └── TestNode03_NotStable.csproj ├── Tools ├── EasePatcher │ ├── EasePatcher.cs │ ├── EasePatcher.csproj │ └── Program.cs └── espr_build_nuget │ ├── LayoutFarm.Espresso.1.0.57.nupkg │ ├── LayoutFarm.Espresso.nuspec │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── SimpleNuget.cs │ ├── espr_build_nuget.csproj │ └── nuget.exe ├── libespr_suite.sln ├── libespresso ├── bridge.cpp ├── bridge2.h ├── bridge2_impl.cpp ├── bridge_napi.cpp ├── espresso.h ├── jscontext.cpp ├── jsengine.cpp ├── jsscript.cpp ├── jsscript.h ├── libespr_nodemain.cpp ├── libespresso.filters ├── libespresso.vcxproj ├── managedref.cpp └── mini_BinaryReaderWriter.cpp ├── node_patches ├── node10.15.1_modified │ ├── lib │ │ └── internal │ │ │ ├── bootstrap │ │ │ └── node.js │ │ │ ├── modules │ │ │ └── cjs │ │ │ │ └── loader.js │ │ │ └── process │ │ │ └── stdio.js │ └── src │ │ └── node.cc ├── node10.15.3_modified │ ├── lib │ │ └── internal │ │ │ ├── bootstrap │ │ │ └── node.js │ │ │ ├── modules │ │ │ └── cjs │ │ │ │ └── loader.js │ │ │ └── process │ │ │ └── stdio.js │ └── src │ │ └── node.cc ├── node11.12.0_modified │ ├── lib │ │ └── internal │ │ │ └── modules │ │ │ └── cjs │ │ │ └── loader.js │ └── src │ │ └── node.cc ├── node11.15.0_modified │ ├── lib │ │ └── internal │ │ │ └── modules │ │ │ └── cjs │ │ │ └── loader.js │ └── src │ │ └── node.cc ├── node12.11.1_modified │ ├── lib │ │ └── internal │ │ │ └── modules │ │ │ └── cjs │ │ │ └── loader.js │ └── src │ │ └── node_main_instance.cc ├── node13.5.0_modified │ ├── lib │ │ └── internal │ │ │ └── modules │ │ │ └── cjs │ │ │ └── loader.js │ └── src │ │ └── node_main_instance.cc ├── node15.5.1_modified │ ├── lib │ │ └── internal │ │ │ └── modules │ │ │ └── cjs │ │ │ └── loader.js │ ├── node.gyp │ └── src │ │ └── node_main_instance.cc ├── node16.3_modified │ ├── lib │ │ └── internal │ │ │ ├── main │ │ │ └── run_main_module.js │ │ │ └── modules │ │ │ └── cjs │ │ │ └── loader.js │ ├── node.gyp │ └── src │ │ └── node_main_instance.cc ├── node16.8_modified │ ├── lib │ │ └── internal │ │ │ ├── main │ │ │ └── run_main_module.js │ │ │ └── modules │ │ │ └── cjs │ │ │ └── loader.js │ ├── node.gyp │ └── src │ │ └── node_main_instance.cc ├── node6.7_modified │ ├── lib │ │ ├── internal │ │ │ ├── bootstrap_node.js │ │ │ └── process │ │ │ │ └── stdio.js │ │ └── module.js │ ├── node.vcxproj │ └── src │ │ ├── node.cc │ │ └── node_main.cc ├── node7.0_modified │ ├── lib │ │ ├── internal │ │ │ ├── bootstrap_node.js │ │ │ └── process │ │ │ │ └── stdio.js │ │ └── module.js │ ├── node.vcxproj │ └── src │ │ ├── node.cc │ │ └── node_main.cc ├── node7.10_modified │ ├── lib │ │ ├── internal │ │ │ ├── bootstrap_node.js │ │ │ └── process │ │ │ │ └── stdio.js │ │ └── module.js │ └── src │ │ └── node.cc ├── node7.4_modified │ ├── lib │ │ ├── internal │ │ │ ├── bootstrap_node.js │ │ │ └── process │ │ │ │ └── stdio.js │ │ └── module.js │ ├── node.vcxproj │ └── src │ │ ├── node.cc │ │ └── node_main.cc ├── node7.6_modified │ ├── lib │ │ ├── internal │ │ │ ├── bootstrap_node.js │ │ │ └── process │ │ │ │ └── stdio.js │ │ └── module.js │ ├── node.vcxproj │ ├── node.vcxproj.filters │ └── src │ │ ├── node.cc │ │ └── node_main.cc ├── node8.1.0_modified │ ├── deps │ │ └── v8 │ │ │ └── src │ │ │ └── api.cc │ ├── lib │ │ ├── internal │ │ │ ├── bootstrap_node.js │ │ │ └── process │ │ │ │ └── stdio.js │ │ └── module.js │ └── src │ │ └── node.cc ├── node8.1.4_modified │ ├── lib │ │ ├── internal │ │ │ ├── bootstrap_node.js │ │ │ └── process │ │ │ │ └── stdio.js │ │ └── module.js │ └── src │ │ └── node.cc ├── node8.4.0_modified │ ├── lib │ │ ├── internal │ │ │ ├── bootstrap_node.js │ │ │ └── process │ │ │ │ └── stdio.js │ │ └── module.js │ └── src │ │ └── node.cc ├── node8.9.3_modified │ ├── lib │ │ ├── internal │ │ │ ├── bootstrap_node.js │ │ │ └── process │ │ │ │ └── stdio.js │ │ └── module.js │ └── src │ │ └── node.cc └── node9.3.0_modified │ ├── lib │ ├── internal │ │ ├── bootstrap_node.js │ │ └── process │ │ │ └── stdio.js │ └── module.js │ └── src │ └── node.cc └── src ├── 0_Start ├── JsBridge.cs └── ScriptInterfaces.cs ├── 1_Core ├── BoundWeakDelegate.cs ├── IKeepAliveStore.cs ├── JsBuffer.cs ├── JsContext.NativeMethods.cs ├── JsContext.cs ├── JsConvert.cs ├── JsEngine.NativeMethods.cs ├── JsEngine.cs ├── JsEngineStats.cs ├── JsError.cs ├── JsException.cs ├── JsExecutionTimedOutException.cs ├── JsFunction.cs ├── JsInteropException.cs ├── JsObject.Dynamic.cs ├── JsScript.cs ├── JsValue.cs ├── KeepAliveDictionaryStore.cs └── WeakDelegate.cs ├── 3_MiniBridge ├── DelegateHolders.cs ├── JsTypeDefinitionBuilder.cs └── NativeV8JsInterOp.cs ├── 4_NAPI ├── NapiEnv.cs └── NapiNativeMethods.cs ├── Espresso_SH.projitems ├── Espresso_SH.shproj ├── Extension.cs ├── HandleRef.cs └── IScriptable.cs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/.gitignore -------------------------------------------------------------------------------- /Espresso.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Espresso.sln -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/LICENSE -------------------------------------------------------------------------------- /OLD_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/OLD_README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/README.md -------------------------------------------------------------------------------- /Samples/js_tools/esprima/esprima.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Samples/js_tools/esprima/esprima.js -------------------------------------------------------------------------------- /Samples/js_tools/lokijs/lokijs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Samples/js_tools/lokijs/lokijs.js -------------------------------------------------------------------------------- /Samples/js_tools/tsc2_1/tsc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Samples/js_tools/tsc2_1/tsc.js -------------------------------------------------------------------------------- /Samples/js_tools/tsc2_1/tsc_espr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Samples/js_tools/tsc2_1/tsc_espr.js -------------------------------------------------------------------------------- /Samples/js_tools/tsc2_5/tsc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Samples/js_tools/tsc2_5/tsc.js -------------------------------------------------------------------------------- /Samples/js_tools/tsc2_5/tsc_espr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Samples/js_tools/tsc2_5/tsc_espr.js -------------------------------------------------------------------------------- /Samples/js_tools/tsc3_3/tsc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Samples/js_tools/tsc3_3/tsc.js -------------------------------------------------------------------------------- /Samples/js_tools/tsc3_3/tsc_espr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Samples/js_tools/tsc3_3/tsc_espr.js -------------------------------------------------------------------------------- /TestNode_NetCore/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/TestNode_NetCore/Program.cs -------------------------------------------------------------------------------- /TestNode_NetCore/TestNode_NetCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/TestNode_NetCore/TestNode_NetCore.csproj -------------------------------------------------------------------------------- /Tests/NodeJsEngineHelper/JsAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Tests/NodeJsEngineHelper/JsAttributes.cs -------------------------------------------------------------------------------- /Tests/NodeJsEngineHelper/JsTypeDefinitionBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Tests/NodeJsEngineHelper/JsTypeDefinitionBuilder.cs -------------------------------------------------------------------------------- /Tests/NodeJsEngineHelper/NodeJsEngineHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Tests/NodeJsEngineHelper/NodeJsEngineHelper.cs -------------------------------------------------------------------------------- /Tests/NodeJsEngineHelper/NodeJsEngineHelper.projitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Tests/NodeJsEngineHelper/NodeJsEngineHelper.projitems -------------------------------------------------------------------------------- /Tests/NodeJsEngineHelper/NodeJsEngineHelper.shproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Tests/NodeJsEngineHelper/NodeJsEngineHelper.shproj -------------------------------------------------------------------------------- /Tests/OpenSSLCertUtils/OpenSSLCertUtils.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Tests/OpenSSLCertUtils/OpenSSLCertUtils.csproj -------------------------------------------------------------------------------- /Tests/OpenSSLCertUtils/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Tests/OpenSSLCertUtils/Program.cs -------------------------------------------------------------------------------- /Tests/OpenSSLCertUtils/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Tests/OpenSSLCertUtils/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tests/OpenSSLCertUtils/openssl.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Tests/OpenSSLCertUtils/openssl.cnf -------------------------------------------------------------------------------- /Tests/Test2/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Tests/Test2/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tests/Test2/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Tests/Test2/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Tests/Test2/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Tests/Test2/Properties/Resources.resx -------------------------------------------------------------------------------- /Tests/Test2/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Tests/Test2/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Tests/Test2/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Tests/Test2/Properties/Settings.settings -------------------------------------------------------------------------------- /Tests/Test2/Test2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Tests/Test2/Test2.csproj -------------------------------------------------------------------------------- /Tests/Test2/Tests/Exceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Tests/Test2/Tests/Exceptions.cs -------------------------------------------------------------------------------- /Tests/Test2/Tests/Globals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Tests/Test2/Tests/Globals.cs -------------------------------------------------------------------------------- /Tests/Test2/Tests/Objects.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Tests/Test2/Tests/Objects.cs -------------------------------------------------------------------------------- /Tests/Test2/Tests/TestClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Tests/Test2/Tests/TestClass.cs -------------------------------------------------------------------------------- /Tests/Test3/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Tests/Test3/Form1.Designer.cs -------------------------------------------------------------------------------- /Tests/Test3/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Tests/Test3/Form1.cs -------------------------------------------------------------------------------- /Tests/Test3/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Tests/Test3/Form1.resx -------------------------------------------------------------------------------- /Tests/Test3/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Tests/Test3/Program.cs -------------------------------------------------------------------------------- /Tests/Test3/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Tests/Test3/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tests/Test3/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Tests/Test3/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Tests/Test3/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Tests/Test3/Properties/Resources.resx -------------------------------------------------------------------------------- /Tests/Test3/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Tests/Test3/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Tests/Test3/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Tests/Test3/Properties/Settings.settings -------------------------------------------------------------------------------- /Tests/Test3/Test3.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Tests/Test3/Test3.csproj -------------------------------------------------------------------------------- /Tests/Test3/lib.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Tests/Test3/lib.d.ts -------------------------------------------------------------------------------- /Tests/Test3/lib.es5.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Tests/Test3/lib.es5.d.ts -------------------------------------------------------------------------------- /Tests/TestEspressoCore/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Tests/TestEspressoCore/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tests/TestEspressoCore/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Tests/TestEspressoCore/Program.cs -------------------------------------------------------------------------------- /Tests/TestEspressoCore/TestEspressoCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Tests/TestEspressoCore/TestEspressoCore.csproj -------------------------------------------------------------------------------- /Tests/TestEspressoCore/Tests/Test1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Tests/TestEspressoCore/Tests/Test1.cs -------------------------------------------------------------------------------- /Tests/TestEspressoCore/Tests/TestAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Tests/TestEspressoCore/Tests/TestAttribute.cs -------------------------------------------------------------------------------- /Tests/TestEspressoCore/Tests/TestInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Tests/TestEspressoCore/Tests/TestInfo.cs -------------------------------------------------------------------------------- /Tests/TestJsConsole/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Tests/TestJsConsole/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tests/TestJsConsole/TestJsConsole.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Tests/TestJsConsole/TestJsConsole.csproj -------------------------------------------------------------------------------- /Tests/TestNode01/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Tests/TestNode01/Program.cs -------------------------------------------------------------------------------- /Tests/TestNode01/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Tests/TestNode01/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tests/TestNode01/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Tests/TestNode01/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Tests/TestNode01/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Tests/TestNode01/Properties/Resources.resx -------------------------------------------------------------------------------- /Tests/TestNode01/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Tests/TestNode01/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Tests/TestNode01/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Tests/TestNode01/Properties/Settings.settings -------------------------------------------------------------------------------- /Tests/TestNode01/TestNode01.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Tests/TestNode01/TestNode01.csproj -------------------------------------------------------------------------------- /Tests/TestNode01/TestNode01.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Tests/TestNode01/TestNode01.sln -------------------------------------------------------------------------------- /Tests/TestNode01_NetworkClients/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Tests/TestNode01_NetworkClients/Program.cs -------------------------------------------------------------------------------- /Tests/TestNode01_NetworkClients/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Tests/TestNode01_NetworkClients/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tests/TestNode01_NetworkClients/TestNode01_NetworkClients.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Tests/TestNode01_NetworkClients/TestNode01_NetworkClients.csproj -------------------------------------------------------------------------------- /Tests/TestNode01_SimpleApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Tests/TestNode01_SimpleApp/Program.cs -------------------------------------------------------------------------------- /Tests/TestNode01_SimpleApp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Tests/TestNode01_SimpleApp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tests/TestNode01_SimpleApp/TestNode01_SimpleApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Tests/TestNode01_SimpleApp/TestNode01_SimpleApp.csproj -------------------------------------------------------------------------------- /Tests/TestNode02/Libuv_Interop/Ext/NativeBufferPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Tests/TestNode02/Libuv_Interop/Ext/NativeBufferPool.cs -------------------------------------------------------------------------------- /Tests/TestNode02/Libuv_Interop/Ext/Span.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Tests/TestNode02/Libuv_Interop/Ext/Span.cs -------------------------------------------------------------------------------- /Tests/TestNode02/Libuv_Interop/UV/Buffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Tests/TestNode02/Libuv_Interop/UV/Buffer.cs -------------------------------------------------------------------------------- /Tests/TestNode02/Libuv_Interop/UV/Error.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Tests/TestNode02/Libuv_Interop/UV/Error.cs -------------------------------------------------------------------------------- /Tests/TestNode02/Libuv_Interop/UV/Handle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Tests/TestNode02/Libuv_Interop/UV/Handle.cs -------------------------------------------------------------------------------- /Tests/TestNode02/Libuv_Interop/UV/Interop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Tests/TestNode02/Libuv_Interop/UV/Interop.cs -------------------------------------------------------------------------------- /Tests/TestNode02/Libuv_Interop/UV/Listener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Tests/TestNode02/Libuv_Interop/UV/Listener.cs -------------------------------------------------------------------------------- /Tests/TestNode02/Libuv_Interop/UV/Loop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Tests/TestNode02/Libuv_Interop/UV/Loop.cs -------------------------------------------------------------------------------- /Tests/TestNode02/Libuv_Interop/UV/Request.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Tests/TestNode02/Libuv_Interop/UV/Request.cs -------------------------------------------------------------------------------- /Tests/TestNode02/Libuv_Interop/UV/Stream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Tests/TestNode02/Libuv_Interop/UV/Stream.cs -------------------------------------------------------------------------------- /Tests/TestNode02/Libuv_Interop/UV/Tcp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Tests/TestNode02/Libuv_Interop/UV/Tcp.cs -------------------------------------------------------------------------------- /Tests/TestNode02/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Tests/TestNode02/Program.cs -------------------------------------------------------------------------------- /Tests/TestNode02/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Tests/TestNode02/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tests/TestNode02/TestLibUV.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Tests/TestNode02/TestLibUV.cs -------------------------------------------------------------------------------- /Tests/TestNode02/TestNode02.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Tests/TestNode02/TestNode02.csproj -------------------------------------------------------------------------------- /Tests/TestNode03_NotStable/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Tests/TestNode03_NotStable/Program.cs -------------------------------------------------------------------------------- /Tests/TestNode03_NotStable/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Tests/TestNode03_NotStable/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tests/TestNode03_NotStable/TestNode03_NotStable.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Tests/TestNode03_NotStable/TestNode03_NotStable.csproj -------------------------------------------------------------------------------- /Tools/EasePatcher/EasePatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Tools/EasePatcher/EasePatcher.cs -------------------------------------------------------------------------------- /Tools/EasePatcher/EasePatcher.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Tools/EasePatcher/EasePatcher.csproj -------------------------------------------------------------------------------- /Tools/EasePatcher/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Tools/EasePatcher/Program.cs -------------------------------------------------------------------------------- /Tools/espr_build_nuget/LayoutFarm.Espresso.1.0.57.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Tools/espr_build_nuget/LayoutFarm.Espresso.1.0.57.nupkg -------------------------------------------------------------------------------- /Tools/espr_build_nuget/LayoutFarm.Espresso.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Tools/espr_build_nuget/LayoutFarm.Espresso.nuspec -------------------------------------------------------------------------------- /Tools/espr_build_nuget/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Tools/espr_build_nuget/Program.cs -------------------------------------------------------------------------------- /Tools/espr_build_nuget/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Tools/espr_build_nuget/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tools/espr_build_nuget/SimpleNuget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Tools/espr_build_nuget/SimpleNuget.cs -------------------------------------------------------------------------------- /Tools/espr_build_nuget/espr_build_nuget.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Tools/espr_build_nuget/espr_build_nuget.csproj -------------------------------------------------------------------------------- /Tools/espr_build_nuget/nuget.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/Tools/espr_build_nuget/nuget.exe -------------------------------------------------------------------------------- /libespr_suite.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/libespr_suite.sln -------------------------------------------------------------------------------- /libespresso/bridge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/libespresso/bridge.cpp -------------------------------------------------------------------------------- /libespresso/bridge2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/libespresso/bridge2.h -------------------------------------------------------------------------------- /libespresso/bridge2_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/libespresso/bridge2_impl.cpp -------------------------------------------------------------------------------- /libespresso/bridge_napi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/libespresso/bridge_napi.cpp -------------------------------------------------------------------------------- /libespresso/espresso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/libespresso/espresso.h -------------------------------------------------------------------------------- /libespresso/jscontext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/libespresso/jscontext.cpp -------------------------------------------------------------------------------- /libespresso/jsengine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/libespresso/jsengine.cpp -------------------------------------------------------------------------------- /libespresso/jsscript.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/libespresso/jsscript.cpp -------------------------------------------------------------------------------- /libespresso/jsscript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/libespresso/jsscript.h -------------------------------------------------------------------------------- /libespresso/libespr_nodemain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/libespresso/libespr_nodemain.cpp -------------------------------------------------------------------------------- /libespresso/libespresso.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/libespresso/libespresso.filters -------------------------------------------------------------------------------- /libespresso/libespresso.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/libespresso/libespresso.vcxproj -------------------------------------------------------------------------------- /libespresso/managedref.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/libespresso/managedref.cpp -------------------------------------------------------------------------------- /libespresso/mini_BinaryReaderWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/libespresso/mini_BinaryReaderWriter.cpp -------------------------------------------------------------------------------- /node_patches/node10.15.1_modified/lib/internal/bootstrap/node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/node_patches/node10.15.1_modified/lib/internal/bootstrap/node.js -------------------------------------------------------------------------------- /node_patches/node10.15.1_modified/lib/internal/modules/cjs/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/node_patches/node10.15.1_modified/lib/internal/modules/cjs/loader.js -------------------------------------------------------------------------------- /node_patches/node10.15.1_modified/lib/internal/process/stdio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/node_patches/node10.15.1_modified/lib/internal/process/stdio.js -------------------------------------------------------------------------------- /node_patches/node10.15.1_modified/src/node.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/node_patches/node10.15.1_modified/src/node.cc -------------------------------------------------------------------------------- /node_patches/node10.15.3_modified/lib/internal/bootstrap/node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/node_patches/node10.15.3_modified/lib/internal/bootstrap/node.js -------------------------------------------------------------------------------- /node_patches/node10.15.3_modified/lib/internal/modules/cjs/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/node_patches/node10.15.3_modified/lib/internal/modules/cjs/loader.js -------------------------------------------------------------------------------- /node_patches/node10.15.3_modified/lib/internal/process/stdio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/node_patches/node10.15.3_modified/lib/internal/process/stdio.js -------------------------------------------------------------------------------- /node_patches/node10.15.3_modified/src/node.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/node_patches/node10.15.3_modified/src/node.cc -------------------------------------------------------------------------------- /node_patches/node11.12.0_modified/lib/internal/modules/cjs/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/node_patches/node11.12.0_modified/lib/internal/modules/cjs/loader.js -------------------------------------------------------------------------------- /node_patches/node11.12.0_modified/src/node.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/node_patches/node11.12.0_modified/src/node.cc -------------------------------------------------------------------------------- /node_patches/node11.15.0_modified/lib/internal/modules/cjs/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/node_patches/node11.15.0_modified/lib/internal/modules/cjs/loader.js -------------------------------------------------------------------------------- /node_patches/node11.15.0_modified/src/node.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/node_patches/node11.15.0_modified/src/node.cc -------------------------------------------------------------------------------- /node_patches/node12.11.1_modified/lib/internal/modules/cjs/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/node_patches/node12.11.1_modified/lib/internal/modules/cjs/loader.js -------------------------------------------------------------------------------- /node_patches/node12.11.1_modified/src/node_main_instance.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/node_patches/node12.11.1_modified/src/node_main_instance.cc -------------------------------------------------------------------------------- /node_patches/node13.5.0_modified/lib/internal/modules/cjs/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/node_patches/node13.5.0_modified/lib/internal/modules/cjs/loader.js -------------------------------------------------------------------------------- /node_patches/node13.5.0_modified/src/node_main_instance.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/node_patches/node13.5.0_modified/src/node_main_instance.cc -------------------------------------------------------------------------------- /node_patches/node15.5.1_modified/lib/internal/modules/cjs/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/node_patches/node15.5.1_modified/lib/internal/modules/cjs/loader.js -------------------------------------------------------------------------------- /node_patches/node15.5.1_modified/node.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/node_patches/node15.5.1_modified/node.gyp -------------------------------------------------------------------------------- /node_patches/node15.5.1_modified/src/node_main_instance.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/node_patches/node15.5.1_modified/src/node_main_instance.cc -------------------------------------------------------------------------------- /node_patches/node16.3_modified/lib/internal/main/run_main_module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/node_patches/node16.3_modified/lib/internal/main/run_main_module.js -------------------------------------------------------------------------------- /node_patches/node16.3_modified/lib/internal/modules/cjs/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/node_patches/node16.3_modified/lib/internal/modules/cjs/loader.js -------------------------------------------------------------------------------- /node_patches/node16.3_modified/node.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/node_patches/node16.3_modified/node.gyp -------------------------------------------------------------------------------- /node_patches/node16.3_modified/src/node_main_instance.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/node_patches/node16.3_modified/src/node_main_instance.cc -------------------------------------------------------------------------------- /node_patches/node16.8_modified/lib/internal/main/run_main_module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/node_patches/node16.8_modified/lib/internal/main/run_main_module.js -------------------------------------------------------------------------------- /node_patches/node16.8_modified/lib/internal/modules/cjs/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/node_patches/node16.8_modified/lib/internal/modules/cjs/loader.js -------------------------------------------------------------------------------- /node_patches/node16.8_modified/node.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/node_patches/node16.8_modified/node.gyp -------------------------------------------------------------------------------- /node_patches/node16.8_modified/src/node_main_instance.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/node_patches/node16.8_modified/src/node_main_instance.cc -------------------------------------------------------------------------------- /node_patches/node6.7_modified/lib/internal/bootstrap_node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/node_patches/node6.7_modified/lib/internal/bootstrap_node.js -------------------------------------------------------------------------------- /node_patches/node6.7_modified/lib/internal/process/stdio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/node_patches/node6.7_modified/lib/internal/process/stdio.js -------------------------------------------------------------------------------- /node_patches/node6.7_modified/lib/module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/node_patches/node6.7_modified/lib/module.js -------------------------------------------------------------------------------- /node_patches/node6.7_modified/node.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/node_patches/node6.7_modified/node.vcxproj -------------------------------------------------------------------------------- /node_patches/node6.7_modified/src/node.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/node_patches/node6.7_modified/src/node.cc -------------------------------------------------------------------------------- /node_patches/node6.7_modified/src/node_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/node_patches/node6.7_modified/src/node_main.cc -------------------------------------------------------------------------------- /node_patches/node7.0_modified/lib/internal/bootstrap_node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/node_patches/node7.0_modified/lib/internal/bootstrap_node.js -------------------------------------------------------------------------------- /node_patches/node7.0_modified/lib/internal/process/stdio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/node_patches/node7.0_modified/lib/internal/process/stdio.js -------------------------------------------------------------------------------- /node_patches/node7.0_modified/lib/module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/node_patches/node7.0_modified/lib/module.js -------------------------------------------------------------------------------- /node_patches/node7.0_modified/node.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/node_patches/node7.0_modified/node.vcxproj -------------------------------------------------------------------------------- /node_patches/node7.0_modified/src/node.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/node_patches/node7.0_modified/src/node.cc -------------------------------------------------------------------------------- /node_patches/node7.0_modified/src/node_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/node_patches/node7.0_modified/src/node_main.cc -------------------------------------------------------------------------------- /node_patches/node7.10_modified/lib/internal/bootstrap_node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/node_patches/node7.10_modified/lib/internal/bootstrap_node.js -------------------------------------------------------------------------------- /node_patches/node7.10_modified/lib/internal/process/stdio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/node_patches/node7.10_modified/lib/internal/process/stdio.js -------------------------------------------------------------------------------- /node_patches/node7.10_modified/lib/module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/node_patches/node7.10_modified/lib/module.js -------------------------------------------------------------------------------- /node_patches/node7.10_modified/src/node.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/node_patches/node7.10_modified/src/node.cc -------------------------------------------------------------------------------- /node_patches/node7.4_modified/lib/internal/bootstrap_node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/node_patches/node7.4_modified/lib/internal/bootstrap_node.js -------------------------------------------------------------------------------- /node_patches/node7.4_modified/lib/internal/process/stdio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/node_patches/node7.4_modified/lib/internal/process/stdio.js -------------------------------------------------------------------------------- /node_patches/node7.4_modified/lib/module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/node_patches/node7.4_modified/lib/module.js -------------------------------------------------------------------------------- /node_patches/node7.4_modified/node.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/node_patches/node7.4_modified/node.vcxproj -------------------------------------------------------------------------------- /node_patches/node7.4_modified/src/node.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/node_patches/node7.4_modified/src/node.cc -------------------------------------------------------------------------------- /node_patches/node7.4_modified/src/node_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/node_patches/node7.4_modified/src/node_main.cc -------------------------------------------------------------------------------- /node_patches/node7.6_modified/lib/internal/bootstrap_node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/node_patches/node7.6_modified/lib/internal/bootstrap_node.js -------------------------------------------------------------------------------- /node_patches/node7.6_modified/lib/internal/process/stdio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/node_patches/node7.6_modified/lib/internal/process/stdio.js -------------------------------------------------------------------------------- /node_patches/node7.6_modified/lib/module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/node_patches/node7.6_modified/lib/module.js -------------------------------------------------------------------------------- /node_patches/node7.6_modified/node.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/node_patches/node7.6_modified/node.vcxproj -------------------------------------------------------------------------------- /node_patches/node7.6_modified/node.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/node_patches/node7.6_modified/node.vcxproj.filters -------------------------------------------------------------------------------- /node_patches/node7.6_modified/src/node.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/node_patches/node7.6_modified/src/node.cc -------------------------------------------------------------------------------- /node_patches/node7.6_modified/src/node_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/node_patches/node7.6_modified/src/node_main.cc -------------------------------------------------------------------------------- /node_patches/node8.1.0_modified/deps/v8/src/api.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/node_patches/node8.1.0_modified/deps/v8/src/api.cc -------------------------------------------------------------------------------- /node_patches/node8.1.0_modified/lib/internal/bootstrap_node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/node_patches/node8.1.0_modified/lib/internal/bootstrap_node.js -------------------------------------------------------------------------------- /node_patches/node8.1.0_modified/lib/internal/process/stdio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/node_patches/node8.1.0_modified/lib/internal/process/stdio.js -------------------------------------------------------------------------------- /node_patches/node8.1.0_modified/lib/module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/node_patches/node8.1.0_modified/lib/module.js -------------------------------------------------------------------------------- /node_patches/node8.1.0_modified/src/node.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/node_patches/node8.1.0_modified/src/node.cc -------------------------------------------------------------------------------- /node_patches/node8.1.4_modified/lib/internal/bootstrap_node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/node_patches/node8.1.4_modified/lib/internal/bootstrap_node.js -------------------------------------------------------------------------------- /node_patches/node8.1.4_modified/lib/internal/process/stdio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/node_patches/node8.1.4_modified/lib/internal/process/stdio.js -------------------------------------------------------------------------------- /node_patches/node8.1.4_modified/lib/module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/node_patches/node8.1.4_modified/lib/module.js -------------------------------------------------------------------------------- /node_patches/node8.1.4_modified/src/node.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/node_patches/node8.1.4_modified/src/node.cc -------------------------------------------------------------------------------- /node_patches/node8.4.0_modified/lib/internal/bootstrap_node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/node_patches/node8.4.0_modified/lib/internal/bootstrap_node.js -------------------------------------------------------------------------------- /node_patches/node8.4.0_modified/lib/internal/process/stdio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/node_patches/node8.4.0_modified/lib/internal/process/stdio.js -------------------------------------------------------------------------------- /node_patches/node8.4.0_modified/lib/module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/node_patches/node8.4.0_modified/lib/module.js -------------------------------------------------------------------------------- /node_patches/node8.4.0_modified/src/node.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/node_patches/node8.4.0_modified/src/node.cc -------------------------------------------------------------------------------- /node_patches/node8.9.3_modified/lib/internal/bootstrap_node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/node_patches/node8.9.3_modified/lib/internal/bootstrap_node.js -------------------------------------------------------------------------------- /node_patches/node8.9.3_modified/lib/internal/process/stdio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/node_patches/node8.9.3_modified/lib/internal/process/stdio.js -------------------------------------------------------------------------------- /node_patches/node8.9.3_modified/lib/module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/node_patches/node8.9.3_modified/lib/module.js -------------------------------------------------------------------------------- /node_patches/node8.9.3_modified/src/node.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/node_patches/node8.9.3_modified/src/node.cc -------------------------------------------------------------------------------- /node_patches/node9.3.0_modified/lib/internal/bootstrap_node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/node_patches/node9.3.0_modified/lib/internal/bootstrap_node.js -------------------------------------------------------------------------------- /node_patches/node9.3.0_modified/lib/internal/process/stdio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/node_patches/node9.3.0_modified/lib/internal/process/stdio.js -------------------------------------------------------------------------------- /node_patches/node9.3.0_modified/lib/module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/node_patches/node9.3.0_modified/lib/module.js -------------------------------------------------------------------------------- /node_patches/node9.3.0_modified/src/node.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/node_patches/node9.3.0_modified/src/node.cc -------------------------------------------------------------------------------- /src/0_Start/JsBridge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/src/0_Start/JsBridge.cs -------------------------------------------------------------------------------- /src/0_Start/ScriptInterfaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/src/0_Start/ScriptInterfaces.cs -------------------------------------------------------------------------------- /src/1_Core/BoundWeakDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/src/1_Core/BoundWeakDelegate.cs -------------------------------------------------------------------------------- /src/1_Core/IKeepAliveStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/src/1_Core/IKeepAliveStore.cs -------------------------------------------------------------------------------- /src/1_Core/JsBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/src/1_Core/JsBuffer.cs -------------------------------------------------------------------------------- /src/1_Core/JsContext.NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/src/1_Core/JsContext.NativeMethods.cs -------------------------------------------------------------------------------- /src/1_Core/JsContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/src/1_Core/JsContext.cs -------------------------------------------------------------------------------- /src/1_Core/JsConvert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/src/1_Core/JsConvert.cs -------------------------------------------------------------------------------- /src/1_Core/JsEngine.NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/src/1_Core/JsEngine.NativeMethods.cs -------------------------------------------------------------------------------- /src/1_Core/JsEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/src/1_Core/JsEngine.cs -------------------------------------------------------------------------------- /src/1_Core/JsEngineStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/src/1_Core/JsEngineStats.cs -------------------------------------------------------------------------------- /src/1_Core/JsError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/src/1_Core/JsError.cs -------------------------------------------------------------------------------- /src/1_Core/JsException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/src/1_Core/JsException.cs -------------------------------------------------------------------------------- /src/1_Core/JsExecutionTimedOutException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/src/1_Core/JsExecutionTimedOutException.cs -------------------------------------------------------------------------------- /src/1_Core/JsFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/src/1_Core/JsFunction.cs -------------------------------------------------------------------------------- /src/1_Core/JsInteropException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/src/1_Core/JsInteropException.cs -------------------------------------------------------------------------------- /src/1_Core/JsObject.Dynamic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/src/1_Core/JsObject.Dynamic.cs -------------------------------------------------------------------------------- /src/1_Core/JsScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/src/1_Core/JsScript.cs -------------------------------------------------------------------------------- /src/1_Core/JsValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/src/1_Core/JsValue.cs -------------------------------------------------------------------------------- /src/1_Core/KeepAliveDictionaryStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/src/1_Core/KeepAliveDictionaryStore.cs -------------------------------------------------------------------------------- /src/1_Core/WeakDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/src/1_Core/WeakDelegate.cs -------------------------------------------------------------------------------- /src/3_MiniBridge/DelegateHolders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/src/3_MiniBridge/DelegateHolders.cs -------------------------------------------------------------------------------- /src/3_MiniBridge/JsTypeDefinitionBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/src/3_MiniBridge/JsTypeDefinitionBuilder.cs -------------------------------------------------------------------------------- /src/3_MiniBridge/NativeV8JsInterOp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/src/3_MiniBridge/NativeV8JsInterOp.cs -------------------------------------------------------------------------------- /src/4_NAPI/NapiEnv.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/src/4_NAPI/NapiEnv.cs -------------------------------------------------------------------------------- /src/4_NAPI/NapiNativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/src/4_NAPI/NapiNativeMethods.cs -------------------------------------------------------------------------------- /src/Espresso_SH.projitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/src/Espresso_SH.projitems -------------------------------------------------------------------------------- /src/Espresso_SH.shproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/src/Espresso_SH.shproj -------------------------------------------------------------------------------- /src/Extension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/src/Extension.cs -------------------------------------------------------------------------------- /src/HandleRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/src/HandleRef.cs -------------------------------------------------------------------------------- /src/IScriptable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prepare/Espresso/HEAD/src/IScriptable.cs --------------------------------------------------------------------------------