├── .vscode
├── launch.json
└── settings.json
├── 3th_modules
└── edge-master
│ ├── .gitattributes
│ ├── .gitignore
│ ├── .jshintrc
│ ├── .travis.yml
│ ├── Dockerfile
│ ├── LICENSE.txt
│ ├── README.md
│ ├── binding.gyp
│ ├── lib
│ ├── bootstrap
│ │ ├── Dummy.cs
│ │ └── project.json
│ ├── double_edge.js
│ ├── edge.js
│ └── native
│ │ └── win32
│ │ ├── ia32
│ │ ├── 0.10.0
│ │ │ ├── .gitignore
│ │ │ ├── edge_coreclr.node
│ │ │ └── edge_nativeclr.node
│ │ ├── 0.12.0
│ │ │ ├── .gitignore
│ │ │ ├── edge_coreclr.node
│ │ │ └── edge_nativeclr.node
│ │ ├── 0.8.22
│ │ │ ├── .gitignore
│ │ │ ├── edge_coreclr.node
│ │ │ └── edge_nativeclr.node
│ │ ├── 4.1.1
│ │ │ ├── .gitignore
│ │ │ ├── edge_coreclr.node
│ │ │ └── edge_nativeclr.node
│ │ ├── 5.1.0
│ │ │ ├── .gitignore
│ │ │ ├── edge_coreclr.node
│ │ │ └── edge_nativeclr.node
│ │ ├── 6.4.0
│ │ │ ├── .gitignore
│ │ │ ├── edge_coreclr.node
│ │ │ └── edge_nativeclr.node
│ │ ├── 7.4.0
│ │ │ ├── edge_coreclr.node
│ │ │ ├── edge_nativeclr.node
│ │ │ └── msvcr120.dll
│ │ ├── 8.2.1
│ │ │ ├── edge_coreclr.node
│ │ │ ├── edge_nativeclr.node
│ │ │ └── msvcr120.dll
│ │ ├── msvcp120.dll
│ │ └── msvcr120.dll
│ │ └── x64
│ │ ├── 730
│ │ ├── .gitignore
│ │ ├── edge_coreclr.node
│ │ └── edge_nativeclr.node
│ │ ├── 0.10.0
│ │ ├── .gitignore
│ │ ├── edge_coreclr.node
│ │ └── edge_nativeclr.node
│ │ ├── 0.12.0
│ │ ├── .gitignore
│ │ ├── edge_coreclr.node
│ │ └── edge_nativeclr.node
│ │ ├── 0.8.22
│ │ ├── .gitignore
│ │ ├── edge_coreclr.node
│ │ └── edge_nativeclr.node
│ │ ├── 4.1.1
│ │ ├── .gitignore
│ │ ├── edge_coreclr.node
│ │ └── edge_nativeclr.node
│ │ ├── 5.1.0
│ │ ├── .gitignore
│ │ ├── edge_coreclr.node
│ │ └── edge_nativeclr.node
│ │ ├── 6.4.0
│ │ ├── .gitignore
│ │ ├── edge_coreclr.node
│ │ └── edge_nativeclr.node
│ │ ├── 7.3.0
│ │ ├── edge_coreclr.node
│ │ ├── edge_nativeclr.node
│ │ └── msvcr120.dll
│ │ ├── 7.4.0
│ │ ├── edge_coreclr.node
│ │ ├── edge_nativeclr.node
│ │ └── msvcr120.dll
│ │ ├── 8.2.1
│ │ ├── edge_coreclr.node
│ │ ├── edge_nativeclr.node
│ │ └── msvcr120.dll
│ │ ├── msvcp120.dll
│ │ └── msvcr120.dll
│ ├── package.json
│ ├── performance
│ ├── .gitignore
│ ├── BookService
│ │ ├── App.config
│ │ ├── BookService.csproj
│ │ ├── BookService.sln
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── compile.sh
│ │ └── packages.config
│ ├── latency.js
│ ├── marshal_clr2v8.js
│ └── performance.cs
│ ├── samples.zip
│ ├── samples
│ ├── 101_hello_lambda.js
│ ├── 102_hello_function.js
│ ├── 103_hello_file.csx
│ ├── 103_hello_file.js
│ ├── 104_add7_class.js
│ ├── 105_add7_dll.js
│ ├── 106_marshal_v82clr.js
│ ├── 107_marshal_clr2v8.js
│ ├── 108_func.js
│ ├── 108_lambda.js
│ ├── 109_sync.js
│ ├── 110_clr_instance.js
│ ├── 111_clr_listener.js
│ ├── 201_worker.js
│ ├── 202_sql.csx
│ ├── 202_sql.js
│ ├── 203_x509store.js
│ ├── 204_event_log.js
│ ├── 205_soap.csx
│ ├── 205_soap.js
│ ├── 206_registry_read.js
│ ├── 206_registry_write.js
│ ├── 207_unzip.js
│ ├── 207_zip.js
│ ├── 208_convertImage.js
│ ├── 209_websocket.js
│ ├── 210_windows_authentication.js
│ ├── 211_events.js
│ ├── 301_cspyfsps.js
│ ├── edge.png
│ └── readme.txt
│ ├── src
│ ├── CoreCLREmbedding
│ │ ├── coreclrembedding.cpp
│ │ ├── coreclrfunc.cpp
│ │ ├── coreclrfuncinvokecontext.cpp
│ │ ├── coreclrnodejsfunc.cpp
│ │ ├── coreclrnodejsfuncinvokecontext.cpp
│ │ ├── cpprest
│ │ │ └── include
│ │ │ │ ├── asyncrt_utils.h
│ │ │ │ └── json.h
│ │ ├── deps
│ │ │ ├── deps_entry.cpp
│ │ │ ├── deps_entry.h
│ │ │ ├── deps_format.cpp
│ │ │ ├── deps_format.h
│ │ │ ├── deps_resolver.cpp
│ │ │ └── deps_resolver.h
│ │ ├── edge.h
│ │ ├── fxr
│ │ │ ├── fx_muxer.cpp
│ │ │ ├── fx_muxer.h
│ │ │ ├── fx_ver.cpp
│ │ │ └── fx_ver.h
│ │ ├── host
│ │ │ ├── args.cpp
│ │ │ ├── args.h
│ │ │ ├── coreclr.cpp
│ │ │ ├── coreclr.h
│ │ │ ├── error_codes.h
│ │ │ ├── libhost.cpp
│ │ │ ├── libhost.h
│ │ │ ├── runtime_config.cpp
│ │ │ └── runtime_config.h
│ │ ├── json
│ │ │ └── casablanca
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── include
│ │ │ │ ├── cpprest
│ │ │ │ │ ├── asyncrt_utils.h
│ │ │ │ │ ├── details
│ │ │ │ │ │ ├── SafeInt3.hpp
│ │ │ │ │ │ ├── basic_types.h
│ │ │ │ │ │ ├── cpprest_compat.h
│ │ │ │ │ │ └── nosal.h
│ │ │ │ │ └── json.h
│ │ │ │ └── stdafx.h
│ │ │ │ └── src
│ │ │ │ ├── json
│ │ │ │ ├── json.cpp
│ │ │ │ ├── json_parsing.cpp
│ │ │ │ └── json_serialization.cpp
│ │ │ │ └── utilities
│ │ │ │ └── asyncrt_utils.cpp
│ │ └── pal
│ │ │ ├── pal.h
│ │ │ ├── pal.unix.cpp
│ │ │ ├── pal.windows.cpp
│ │ │ ├── pal_utils.cpp
│ │ │ ├── pal_utils.h
│ │ │ ├── trace.cpp
│ │ │ └── trace.h
│ ├── common
│ │ ├── clrfuncreflectionwrap.cs
│ │ ├── edge.cpp
│ │ ├── edge_common.h
│ │ ├── utils.cpp
│ │ └── v8synchronizationcontext.cpp
│ ├── dotnet
│ │ ├── clractioncontext.cpp
│ │ ├── clrfunc.cpp
│ │ ├── clrfuncinvokecontext.cpp
│ │ ├── clrfuncreflectionwrap.cpp
│ │ ├── edge.h
│ │ ├── nodejsfunc.cpp
│ │ ├── nodejsfuncinvokecontext.cpp
│ │ ├── persistentdisposecontext.cpp
│ │ └── utils.cpp
│ ├── double
│ │ └── Edge.js
│ │ │ ├── dotnet
│ │ │ └── EdgeJs.cs
│ │ │ ├── dotnetcore
│ │ │ ├── coreclrembedding.cs
│ │ │ ├── nodejsfunc.cs
│ │ │ ├── nodejsfuncinvokecontext.cs
│ │ │ └── semversion.cs
│ │ │ └── project.json
│ └── mono
│ │ ├── clractioncontext.cpp
│ │ ├── clrfunc.cpp
│ │ ├── clrfuncinvokecontext.cpp
│ │ ├── clrfuncinvokecontext.cs
│ │ ├── dictionary.cpp
│ │ ├── edge.h
│ │ ├── monoembedding.cpp
│ │ ├── monoembedding.cs
│ │ ├── nodejsfunc.cpp
│ │ ├── nodejsfunc.cs
│ │ ├── nodejsfuncinvokecontext.cpp
│ │ ├── nodejsfuncinvokecontext.cs
│ │ ├── task.cpp
│ │ └── utils.cpp
│ ├── stress
│ └── test.js
│ ├── test
│ ├── 101_edge_func.js
│ ├── 102_node2net.js
│ ├── 103_net2node.js
│ ├── 104_csx.js
│ ├── 105_node2net_sync.js
│ ├── 201_patterns.js
│ ├── build.bat
│ ├── build.sh
│ ├── double
│ │ ├── .gitignore
│ │ ├── double_stress
│ │ │ ├── App.config
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── double_stress.csproj
│ │ │ ├── double_stress.sln
│ │ │ └── packages.config
│ │ └── double_test
│ │ │ ├── DoubleEdge.cs
│ │ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ │ ├── double_test.csproj
│ │ │ ├── double_test.sln
│ │ │ └── packages.config
│ ├── hello_class.cs
│ ├── hello_class.csx
│ ├── hello_lambda.csx
│ ├── project.json
│ ├── test.bat
│ ├── testall.bat
│ └── tests.cs
│ └── tools
│ ├── build.bat
│ ├── build_double.bat
│ ├── buildall.bat
│ ├── checkplatform.js
│ ├── download.cs
│ ├── download.js
│ ├── install.js
│ ├── nuget
│ ├── edge.nuspec
│ └── install.ps1
│ ├── repl.cs
│ ├── runJsHint.js
│ ├── test.js
│ ├── unzip.cs
│ ├── unzip.vbs
│ └── whereis.js
├── README.md
├── Sandbox
├── App.config
├── Program.cs
├── Properties
│ └── AssemblyInfo.cs
├── Tests.cs
├── bin
│ ├── Debug
│ │ ├── Newtonsoft.Json.dll
│ │ ├── Newtonsoft.Json.xml
│ │ ├── Sandbox.exe
│ │ ├── Sandbox.exe.config
│ │ ├── Sandbox.pdb
│ │ ├── Sandbox.vshost.exe
│ │ ├── Sandbox.vshost.exe.config
│ │ ├── Sandbox.vshost.exe.manifest
│ │ ├── TA-Lib-Core.dll
│ │ ├── talib.dll
│ │ └── talib.pdb
│ └── Release
│ │ ├── Newtonsoft.Json.dll
│ │ ├── Newtonsoft.Json.xml
│ │ ├── Sandbox.exe
│ │ ├── Sandbox.exe.config
│ │ ├── Sandbox.pdb
│ │ ├── Sandbox.vshost.exe
│ │ ├── Sandbox.vshost.exe.config
│ │ ├── TA-Lib-Core.dll
│ │ ├── talib.dll
│ │ └── talib.pdb
├── obj
│ ├── Debug
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── Sandbox.csproj.FileListAbsolute.txt
│ │ ├── Sandbox.csprojResolveAssemblyReference.cache
│ │ ├── Sandbox.exe
│ │ ├── Sandbox.pdb
│ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ └── Release
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── Sandbox.exe
│ │ ├── Sandbox.pdb
│ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ ├── sandbox.csproj.FileListAbsolute.txt
│ │ └── sandbox.csprojResolveAssemblyReference.cache
├── packages.config
└── sandbox.csproj
├── TA-Lib-Core.dll
├── index.js
├── node_modules
├── .bin
│ ├── which
│ └── which.cmd
├── arr-diff
│ ├── LICENSE
│ ├── README.md
│ ├── index.js
│ └── package.json
├── arr-flatten
│ ├── LICENSE
│ ├── README.md
│ ├── index.js
│ └── package.json
├── array-unique
│ ├── LICENSE
│ ├── README.md
│ ├── index.js
│ └── package.json
├── braces
│ ├── LICENSE
│ ├── README.md
│ ├── index.js
│ └── package.json
├── detect-file
│ ├── LICENSE
│ ├── README.md
│ ├── index.js
│ └── package.json
├── edge-cs
│ ├── .gitattributes
│ ├── .npmignore
│ ├── LICENSE.txt
│ ├── README.md
│ ├── lib
│ │ ├── bootstrap
│ │ │ ├── Dummy.cs
│ │ │ └── project.json
│ │ ├── edge-cs.dll
│ │ └── edge-cs.js
│ ├── package.json
│ ├── src
│ │ ├── Edge.js.CSharp
│ │ │ ├── EdgeCompiler.cs
│ │ │ ├── edge-cs-coreclr.sln
│ │ │ ├── edge-cs-coreclr.xproj
│ │ │ ├── gulpfile.js
│ │ │ ├── package.json
│ │ │ └── project.json
│ │ └── edge-cs
│ │ │ ├── EdgeCompiler.cs
│ │ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ │ ├── edge-cs.csproj
│ │ │ └── edge-cs.sln
│ └── tools
│ │ └── install.js
├── edge
│ ├── .gitattributes
│ ├── .jshintrc
│ ├── .travis.yml
│ ├── Dockerfile
│ ├── LICENSE.txt
│ ├── README.md
│ ├── binding.gyp
│ ├── lib
│ │ ├── bootstrap
│ │ │ ├── Dummy.cs
│ │ │ └── project.json
│ │ ├── double_edge.js
│ │ ├── edge.js
│ │ └── native
│ │ │ └── win32
│ │ │ ├── ia32
│ │ │ ├── 6.11.2
│ │ │ │ ├── concrt140.dll
│ │ │ │ ├── edge_coreclr.node
│ │ │ │ ├── edge_nativeclr.node
│ │ │ │ ├── msvcp140.dll
│ │ │ │ ├── vccorlib140.dll
│ │ │ │ └── vcruntime140.dll
│ │ │ ├── 7.10.1
│ │ │ │ ├── concrt140.dll
│ │ │ │ ├── edge_coreclr.node
│ │ │ │ ├── edge_nativeclr.node
│ │ │ │ ├── msvcp140.dll
│ │ │ │ ├── vccorlib140.dll
│ │ │ │ └── vcruntime140.dll
│ │ │ ├── 8.2.1
│ │ │ │ ├── concrt140.dll
│ │ │ │ ├── edge_coreclr.node
│ │ │ │ ├── edge_nativeclr.node
│ │ │ │ ├── msvcp140.dll
│ │ │ │ ├── vccorlib140.dll
│ │ │ │ └── vcruntime140.dll
│ │ │ ├── concrt140.dll
│ │ │ ├── msvcp140.dll
│ │ │ ├── vccorlib140.dll
│ │ │ └── vcruntime140.dll
│ │ │ └── x64
│ │ │ ├── 6.11.2
│ │ │ ├── concrt140.dll
│ │ │ ├── edge_coreclr.node
│ │ │ ├── edge_nativeclr.node
│ │ │ ├── msvcp140.dll
│ │ │ ├── vccorlib140.dll
│ │ │ └── vcruntime140.dll
│ │ │ ├── 7.10.1
│ │ │ ├── concrt140.dll
│ │ │ ├── edge_coreclr.node
│ │ │ ├── edge_nativeclr.node
│ │ │ ├── msvcp140.dll
│ │ │ ├── vccorlib140.dll
│ │ │ └── vcruntime140.dll
│ │ │ ├── 8.2.1
│ │ │ ├── concrt140.dll
│ │ │ ├── edge_coreclr.node
│ │ │ ├── edge_nativeclr.node
│ │ │ ├── msvcp140.dll
│ │ │ ├── vccorlib140.dll
│ │ │ └── vcruntime140.dll
│ │ │ ├── concrt140.dll
│ │ │ ├── msvcp140.dll
│ │ │ ├── vccorlib140.dll
│ │ │ └── vcruntime140.dll
│ ├── package.json
│ ├── performance
│ │ ├── BookService
│ │ │ ├── App.config
│ │ │ ├── BookService.csproj
│ │ │ ├── BookService.sln
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── compile.sh
│ │ │ └── packages.config
│ │ ├── latency.js
│ │ ├── marshal_clr2v8.js
│ │ └── performance.cs
│ ├── samples
│ │ ├── 101_hello_lambda.js
│ │ ├── 102_hello_function.js
│ │ ├── 103_hello_file.csx
│ │ ├── 103_hello_file.js
│ │ ├── 104_add7_class.js
│ │ ├── 105_add7_dll.js
│ │ ├── 106_marshal_v82clr.js
│ │ ├── 107_marshal_clr2v8.js
│ │ ├── 108_func.js
│ │ ├── 108_lambda.js
│ │ ├── 109_sync.js
│ │ ├── 110_clr_instance.js
│ │ ├── 111_clr_listener.js
│ │ ├── 201_worker.js
│ │ ├── 202_sql.csx
│ │ ├── 202_sql.js
│ │ ├── 203_x509store.js
│ │ ├── 204_event_log.js
│ │ ├── 205_soap.csx
│ │ ├── 205_soap.js
│ │ ├── 206_registry_read.js
│ │ ├── 206_registry_write.js
│ │ ├── 207_unzip.js
│ │ ├── 207_zip.js
│ │ ├── 208_convertImage.js
│ │ ├── 209_websocket.js
│ │ ├── 210_windows_authentication.js
│ │ ├── 211_events.js
│ │ ├── 301_cspyfsps.js
│ │ ├── edge.png
│ │ └── readme.txt
│ ├── src
│ │ ├── CoreCLREmbedding
│ │ │ ├── coreclrembedding.cpp
│ │ │ ├── coreclrfunc.cpp
│ │ │ ├── coreclrfuncinvokecontext.cpp
│ │ │ ├── coreclrnodejsfunc.cpp
│ │ │ ├── coreclrnodejsfuncinvokecontext.cpp
│ │ │ ├── cpprest
│ │ │ │ └── include
│ │ │ │ │ ├── asyncrt_utils.h
│ │ │ │ │ └── json.h
│ │ │ ├── deps
│ │ │ │ ├── deps_entry.cpp
│ │ │ │ ├── deps_entry.h
│ │ │ │ ├── deps_format.cpp
│ │ │ │ ├── deps_format.h
│ │ │ │ ├── deps_resolver.cpp
│ │ │ │ └── deps_resolver.h
│ │ │ ├── edge.h
│ │ │ ├── fxr
│ │ │ │ ├── fx_muxer.cpp
│ │ │ │ ├── fx_muxer.h
│ │ │ │ ├── fx_ver.cpp
│ │ │ │ └── fx_ver.h
│ │ │ ├── host
│ │ │ │ ├── args.cpp
│ │ │ │ ├── args.h
│ │ │ │ ├── coreclr.cpp
│ │ │ │ ├── coreclr.h
│ │ │ │ ├── error_codes.h
│ │ │ │ ├── libhost.cpp
│ │ │ │ ├── libhost.h
│ │ │ │ ├── runtime_config.cpp
│ │ │ │ └── runtime_config.h
│ │ │ ├── json
│ │ │ │ └── casablanca
│ │ │ │ │ ├── LICENSE.txt
│ │ │ │ │ ├── include
│ │ │ │ │ ├── cpprest
│ │ │ │ │ │ ├── asyncrt_utils.h
│ │ │ │ │ │ ├── details
│ │ │ │ │ │ │ ├── SafeInt3.hpp
│ │ │ │ │ │ │ ├── basic_types.h
│ │ │ │ │ │ │ ├── cpprest_compat.h
│ │ │ │ │ │ │ └── nosal.h
│ │ │ │ │ │ └── json.h
│ │ │ │ │ └── stdafx.h
│ │ │ │ │ └── src
│ │ │ │ │ ├── json
│ │ │ │ │ ├── json.cpp
│ │ │ │ │ ├── json_parsing.cpp
│ │ │ │ │ └── json_serialization.cpp
│ │ │ │ │ └── utilities
│ │ │ │ │ └── asyncrt_utils.cpp
│ │ │ └── pal
│ │ │ │ ├── pal.h
│ │ │ │ ├── pal.unix.cpp
│ │ │ │ ├── pal.windows.cpp
│ │ │ │ ├── pal_utils.cpp
│ │ │ │ ├── pal_utils.h
│ │ │ │ ├── trace.cpp
│ │ │ │ └── trace.h
│ │ ├── common
│ │ │ ├── callbackhelper.cpp
│ │ │ ├── clrfuncreflectionwrap.cs
│ │ │ ├── edge.cpp
│ │ │ ├── edge_common.h
│ │ │ ├── utils.cpp
│ │ │ └── v8synchronizationcontext.cpp
│ │ ├── dotnet
│ │ │ ├── clractioncontext.cpp
│ │ │ ├── clrfunc.cpp
│ │ │ ├── clrfuncinvokecontext.cpp
│ │ │ ├── clrfuncreflectionwrap.cpp
│ │ │ ├── edge.h
│ │ │ ├── nodejsfunc.cpp
│ │ │ ├── nodejsfuncinvokecontext.cpp
│ │ │ ├── persistentdisposecontext.cpp
│ │ │ └── utils.cpp
│ │ ├── double
│ │ │ └── Edge.js
│ │ │ │ ├── dotnet
│ │ │ │ └── EdgeJs.cs
│ │ │ │ ├── dotnetcore
│ │ │ │ ├── coreclrembedding.cs
│ │ │ │ ├── nodejsfunc.cs
│ │ │ │ ├── nodejsfuncinvokecontext.cs
│ │ │ │ └── semversion.cs
│ │ │ │ └── project.json
│ │ └── mono
│ │ │ ├── clractioncontext.cpp
│ │ │ ├── clrfunc.cpp
│ │ │ ├── clrfuncinvokecontext.cpp
│ │ │ ├── clrfuncinvokecontext.cs
│ │ │ ├── dictionary.cpp
│ │ │ ├── edge.h
│ │ │ ├── monoembedding.cpp
│ │ │ ├── monoembedding.cs
│ │ │ ├── nodejsfunc.cpp
│ │ │ ├── nodejsfunc.cs
│ │ │ ├── nodejsfuncinvokecontext.cpp
│ │ │ ├── nodejsfuncinvokecontext.cs
│ │ │ ├── task.cpp
│ │ │ └── utils.cpp
│ ├── stress
│ │ └── test.js
│ ├── test
│ │ ├── 101_edge_func.js
│ │ ├── 102_node2net.js
│ │ ├── 103_net2node.js
│ │ ├── 104_csx.js
│ │ ├── 105_node2net_sync.js
│ │ ├── 201_patterns.js
│ │ ├── build.bat
│ │ ├── build.sh
│ │ ├── double
│ │ │ ├── double_stress
│ │ │ │ ├── App.config
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ ├── double_stress.csproj
│ │ │ │ ├── double_stress.sln
│ │ │ │ └── packages.config
│ │ │ └── double_test
│ │ │ │ ├── DoubleEdge.cs
│ │ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ │ ├── double_test.csproj
│ │ │ │ ├── double_test.sln
│ │ │ │ └── packages.config
│ │ ├── hello_class.cs
│ │ ├── hello_class.csx
│ │ ├── hello_lambda.csx
│ │ ├── project.json
│ │ ├── test.bat
│ │ ├── testall.bat
│ │ └── tests.cs
│ └── tools
│ │ ├── build.bat
│ │ ├── build_double.bat
│ │ ├── buildall.bat
│ │ ├── checkplatform.js
│ │ ├── download.cs
│ │ ├── download.js
│ │ ├── install.js
│ │ ├── nuget
│ │ ├── edge.nuspec
│ │ └── install.ps1
│ │ ├── repl.cs
│ │ ├── runJsHint.js
│ │ ├── test.js
│ │ ├── unzip.cs
│ │ ├── unzip.vbs
│ │ └── whereis.js
├── expand-brackets
│ ├── LICENSE
│ ├── README.md
│ ├── index.js
│ └── package.json
├── expand-range
│ ├── LICENSE
│ ├── README.md
│ ├── index.js
│ └── package.json
├── expand-tilde
│ ├── LICENSE
│ ├── index.js
│ └── package.json
├── extglob
│ ├── LICENSE
│ ├── README.md
│ ├── index.js
│ └── package.json
├── filename-regex
│ ├── README.md
│ ├── index.js
│ └── package.json
├── fill-range
│ ├── LICENSE
│ ├── README.md
│ ├── index.js
│ └── package.json
├── find-node-modules
│ ├── .npmignore
│ ├── README.md
│ ├── index.js
│ ├── package.json
│ ├── test.js
│ └── test
│ │ ├── b
│ │ └── c
│ │ │ ├── d
│ │ │ ├── e
│ │ │ │ └── f
│ │ │ │ │ └── node_modules
│ │ │ │ │ └── blank
│ │ │ └── node_modules
│ │ │ │ └── blank
│ │ │ └── node_modules
│ │ │ └── blank
│ │ └── node_modules
│ │ └── blank
├── findup-sync
│ ├── index.js
│ └── package.json
├── for-in
│ ├── LICENSE
│ ├── README.md
│ ├── index.js
│ └── package.json
├── for-own
│ ├── LICENSE
│ ├── README.md
│ ├── index.js
│ └── package.json
├── fs-exists-sync
│ ├── LICENSE
│ ├── README.md
│ ├── index.js
│ └── package.json
├── glob-base
│ ├── LICENSE
│ ├── README.md
│ ├── index.js
│ └── package.json
├── glob-parent
│ ├── .npmignore
│ ├── .travis.yml
│ ├── LICENSE
│ ├── README.md
│ ├── index.js
│ ├── package.json
│ └── test.js
├── global-modules
│ ├── LICENSE
│ ├── README.md
│ ├── index.js
│ └── package.json
├── global-prefix
│ ├── LICENSE
│ ├── README.md
│ ├── index.js
│ └── package.json
├── homedir-polyfill
│ ├── LICENSE
│ ├── README.md
│ ├── index.js
│ └── package.json
├── ini
│ ├── LICENSE
│ ├── README.md
│ ├── ini.js
│ └── package.json
├── is-buffer
│ ├── .travis.yml
│ ├── .zuul.yml
│ ├── LICENSE
│ ├── README.md
│ ├── index.js
│ ├── package.json
│ └── test
│ │ └── basic.js
├── is-dotfile
│ ├── LICENSE
│ ├── README.md
│ ├── index.js
│ └── package.json
├── is-equal-shallow
│ ├── LICENSE
│ ├── README.md
│ ├── index.js
│ └── package.json
├── is-extendable
│ ├── LICENSE
│ ├── README.md
│ ├── index.js
│ └── package.json
├── is-extglob
│ ├── LICENSE
│ ├── README.md
│ ├── index.js
│ └── package.json
├── is-glob
│ ├── LICENSE
│ ├── README.md
│ ├── index.js
│ └── package.json
├── is-number
│ ├── LICENSE
│ ├── README.md
│ ├── index.js
│ └── package.json
├── is-posix-bracket
│ ├── LICENSE
│ ├── README.md
│ ├── index.js
│ └── package.json
├── is-primitive
│ ├── LICENSE
│ ├── README.md
│ ├── index.js
│ └── package.json
├── is-windows
│ ├── LICENSE
│ ├── index.js
│ └── package.json
├── isarray
│ ├── .npmignore
│ ├── .travis.yml
│ ├── Makefile
│ ├── README.md
│ ├── component.json
│ ├── index.js
│ ├── package.json
│ └── test.js
├── isexe
│ ├── .npmignore
│ ├── LICENSE
│ ├── README.md
│ ├── access.js
│ ├── index.js
│ ├── mode.js
│ ├── package.json
│ ├── test
│ │ └── basic.js
│ └── windows.js
├── isobject
│ ├── LICENSE
│ ├── README.md
│ ├── index.js
│ └── package.json
├── kind-of
│ ├── LICENSE
│ ├── README.md
│ ├── index.js
│ └── package.json
├── merge
│ ├── .npmignore
│ ├── LICENSE
│ ├── README.md
│ ├── bower.json
│ ├── merge.js
│ ├── merge.min.js
│ └── package.json
├── micromatch
│ ├── LICENSE
│ ├── README.md
│ ├── index.js
│ ├── lib
│ │ ├── chars.js
│ │ ├── expand.js
│ │ ├── glob.js
│ │ └── utils.js
│ └── package.json
├── nan
│ ├── CHANGELOG.md
│ ├── LICENSE.md
│ ├── README.md
│ ├── doc
│ │ ├── asyncworker.md
│ │ ├── buffers.md
│ │ ├── callback.md
│ │ ├── converters.md
│ │ ├── errors.md
│ │ ├── json.md
│ │ ├── maybe_types.md
│ │ ├── methods.md
│ │ ├── new.md
│ │ ├── node_misc.md
│ │ ├── object_wrappers.md
│ │ ├── persistent.md
│ │ ├── scopes.md
│ │ ├── script.md
│ │ ├── string_bytes.md
│ │ ├── v8_internals.md
│ │ └── v8_misc.md
│ ├── include_dirs.js
│ ├── nan.h
│ ├── nan_callbacks.h
│ ├── nan_callbacks_12_inl.h
│ ├── nan_callbacks_pre_12_inl.h
│ ├── nan_converters.h
│ ├── nan_converters_43_inl.h
│ ├── nan_converters_pre_43_inl.h
│ ├── nan_implementation_12_inl.h
│ ├── nan_implementation_pre_12_inl.h
│ ├── nan_json.h
│ ├── nan_maybe_43_inl.h
│ ├── nan_maybe_pre_43_inl.h
│ ├── nan_new.h
│ ├── nan_object_wrap.h
│ ├── nan_persistent_12_inl.h
│ ├── nan_persistent_pre_12_inl.h
│ ├── nan_private.h
│ ├── nan_string_bytes.h
│ ├── nan_typedarray_contents.h
│ ├── nan_weak.h
│ ├── package.json
│ └── tools
│ │ ├── 1to2.js
│ │ ├── README.md
│ │ └── package.json
├── normalize-path
│ ├── LICENSE
│ ├── README.md
│ ├── index.js
│ └── package.json
├── object.omit
│ ├── LICENSE
│ ├── README.md
│ ├── index.js
│ └── package.json
├── os-homedir
│ ├── index.js
│ ├── license
│ ├── package.json
│ └── readme.md
├── parse-glob
│ ├── LICENSE
│ ├── README.md
│ ├── index.js
│ └── package.json
├── parse-passwd
│ ├── LICENSE
│ ├── README.md
│ ├── index.js
│ └── package.json
├── preserve
│ ├── .gitattributes
│ ├── .jshintrc
│ ├── .npmignore
│ ├── .travis.yml
│ ├── .verb.md
│ ├── LICENSE
│ ├── README.md
│ ├── index.js
│ ├── package.json
│ └── test.js
├── randomatic
│ ├── LICENSE
│ ├── README.md
│ ├── index.js
│ └── package.json
├── regex-cache
│ ├── LICENSE
│ ├── README.md
│ ├── index.js
│ └── package.json
├── repeat-element
│ ├── LICENSE
│ ├── README.md
│ ├── index.js
│ └── package.json
├── repeat-string
│ ├── LICENSE
│ ├── README.md
│ ├── index.js
│ └── package.json
├── resolve-dir
│ ├── LICENSE
│ ├── README.md
│ ├── index.js
│ └── package.json
├── talib-c
│ ├── TA-Lib-Core.dll
│ ├── talib.dll
│ └── talib.pdb
└── which
│ ├── CHANGELOG.md
│ ├── LICENSE
│ ├── README.md
│ ├── bin
│ └── which
│ ├── package.json
│ └── which.js
├── package-lock.json
├── package.json
├── talib.dll
├── talib.pdb
├── talib
├── .vs
│ └── talib
│ │ └── v14
│ │ └── .suo
├── Integration.cs
├── Properties
│ └── AssemblyInfo.cs
├── TA-Lib-Core.dll
├── Talib.cs
├── bin
│ └── Debug
│ │ ├── TA-Lib-Core.dll
│ │ ├── talib.dll
│ │ └── talib.pdb
├── obj
│ ├── Debug
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ ├── talib.csproj.FileListAbsolute.txt
│ │ ├── talib.dll
│ │ └── talib.pdb
│ └── Release
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ ├── talib.csproj.FileListAbsolute.txt
│ │ ├── talib.dll
│ │ └── talib.pdb
├── packages
│ └── Newtonsoft.Json.9.0.1
│ │ ├── Newtonsoft.Json.9.0.1.nupkg
│ │ ├── lib
│ │ ├── net20
│ │ │ ├── Newtonsoft.Json.dll
│ │ │ └── Newtonsoft.Json.xml
│ │ ├── net35
│ │ │ ├── Newtonsoft.Json.dll
│ │ │ └── Newtonsoft.Json.xml
│ │ ├── net40
│ │ │ ├── Newtonsoft.Json.dll
│ │ │ └── Newtonsoft.Json.xml
│ │ ├── net45
│ │ │ ├── Newtonsoft.Json.dll
│ │ │ └── Newtonsoft.Json.xml
│ │ ├── netstandard1.0
│ │ │ ├── Newtonsoft.Json.dll
│ │ │ └── Newtonsoft.Json.xml
│ │ ├── portable-net40+sl5+wp80+win8+wpa81
│ │ │ ├── Newtonsoft.Json.dll
│ │ │ └── Newtonsoft.Json.xml
│ │ └── portable-net45+wp80+win8+wpa81
│ │ │ ├── Newtonsoft.Json.dll
│ │ │ └── Newtonsoft.Json.xml
│ │ └── tools
│ │ └── install.ps1
├── talib.csproj
└── talib.sln
└── tests
└── index.js
/.vscode/launch.json:
--------------------------------------------------------------------------------
1 | {
2 | // Use IntelliSense to learn about possible Node.js debug attributes.
3 | // Hover to view descriptions of existing attributes.
4 | // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5 | "version": "0.2.0",
6 | "configurations": [
7 | {
8 | "type": "node",
9 | "request": "launch",
10 | "name": "Launch Program",
11 | "program": "${workspaceRoot}\\tests\\index.js",
12 | "cwd": "${workspaceRoot}"
13 | },
14 | {
15 | "type": "node",
16 | "request": "attach",
17 | "name": "Attach to Process",
18 | "port": 5858
19 | }
20 | ]
21 | }
--------------------------------------------------------------------------------
/.vscode/settings.json:
--------------------------------------------------------------------------------
1 | {
2 | "vsicons.presets.angular": true
3 | }
--------------------------------------------------------------------------------
/3th_modules/edge-master/.gitignore:
--------------------------------------------------------------------------------
1 | lib-cov
2 | *.seed
3 | *.log
4 | *.csv
5 | *.dat
6 | *.out
7 | *.pid
8 | *.gz
9 | *.lock.json
10 |
11 | pids
12 | logs
13 | results
14 |
15 | node_modules
16 | npm-debug.log
17 | build
18 |
19 | bin/
20 | obj/
21 | *.user
22 | *.suo
23 | packages/*
24 | _ReSharper*
25 |
26 | Edge.Tests.*
27 | node.exe
28 | Sample105.*
29 |
30 | .DS_Store
31 | *.sublime-project
32 | *.sublime-workspace
33 |
34 | .cproject
35 | .project
36 | .metadata/
37 | .settings/
38 |
39 | adhoc/
--------------------------------------------------------------------------------
/3th_modules/edge-master/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 |
3 | node_js:
4 | - "0.12"
5 | - "0.10"
6 |
7 | install:
8 | - sudo apt-key adv --keyserver pgp.mit.edu --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF
9 | - sudo sh -c "echo 'deb http://download.mono-project.com/repo/debian wheezy main' >> /etc/apt/sources.list.d/mono-xamarin.list"
10 | - sudo sh -c "echo 'deb http://download.mono-project.com/repo/debian wheezy-libtiff-compat main' >> /etc/apt/sources.list.d/mono-xamarin.list"
11 | - sudo apt-get update
12 | - sudo apt-get install mono-devel
13 | - npm install -g grunt-cli
14 | - npm install
15 |
--------------------------------------------------------------------------------
/3th_modules/edge-master/LICENSE.txt:
--------------------------------------------------------------------------------
1 | Copyright 2012 Tomasz Janczuk
2 |
3 | Licensed under the Apache License, Version 2.0 (the "License");
4 | you may not use this file except in compliance with the License.
5 | You may obtain a copy of the License at
6 |
7 | http://www.apache.org/licenses/LICENSE-2.0
8 |
9 | Unless required by applicable law or agreed to in writing, software
10 | distributed under the License is distributed on an "AS IS" BASIS,
11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 | See the License for the specific language governing permissions and
13 | limitations under the License.
--------------------------------------------------------------------------------
/3th_modules/edge-master/lib/bootstrap/Dummy.cs:
--------------------------------------------------------------------------------
1 | using System;
2 |
3 | public class Dummy
4 | {
5 | }
--------------------------------------------------------------------------------
/3th_modules/edge-master/lib/bootstrap/project.json:
--------------------------------------------------------------------------------
1 | {
2 | "frameworks": {
3 | "netcoreapp1.0": {
4 | "imports": [
5 | "portable-net45+wp80+win8+wpa81+dnxcore50",
6 | "portable-dnxcore50+net45+win8+wp8+wpa81"
7 | ],
8 | "dependencies": {
9 | "Microsoft.NETCore.App": {
10 | "type": "platform",
11 | "version": "1.0.0"
12 | },
13 | "Edge.js": "6.5.1",
14 | "Edge.js.CSharp": "1.2.0"
15 | }
16 | }
17 | },
18 |
19 | "buildOptions": {
20 | "preserveCompilationContext": true
21 | }
22 | }
23 |
--------------------------------------------------------------------------------
/3th_modules/edge-master/lib/native/win32/ia32/0.10.0/.gitignore:
--------------------------------------------------------------------------------
1 | ms*.dll
--------------------------------------------------------------------------------
/3th_modules/edge-master/lib/native/win32/ia32/0.10.0/edge_coreclr.node:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GimmerBot/talib-c/4f1d396440d1d612e8a5b9610d505f186af277c3/3th_modules/edge-master/lib/native/win32/ia32/0.10.0/edge_coreclr.node
--------------------------------------------------------------------------------
/3th_modules/edge-master/lib/native/win32/ia32/0.10.0/edge_nativeclr.node:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GimmerBot/talib-c/4f1d396440d1d612e8a5b9610d505f186af277c3/3th_modules/edge-master/lib/native/win32/ia32/0.10.0/edge_nativeclr.node
--------------------------------------------------------------------------------
/3th_modules/edge-master/lib/native/win32/ia32/0.12.0/.gitignore:
--------------------------------------------------------------------------------
1 | ms*.dll
--------------------------------------------------------------------------------
/3th_modules/edge-master/lib/native/win32/ia32/0.12.0/edge_coreclr.node:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GimmerBot/talib-c/4f1d396440d1d612e8a5b9610d505f186af277c3/3th_modules/edge-master/lib/native/win32/ia32/0.12.0/edge_coreclr.node
--------------------------------------------------------------------------------
/3th_modules/edge-master/lib/native/win32/ia32/0.12.0/edge_nativeclr.node:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GimmerBot/talib-c/4f1d396440d1d612e8a5b9610d505f186af277c3/3th_modules/edge-master/lib/native/win32/ia32/0.12.0/edge_nativeclr.node
--------------------------------------------------------------------------------
/3th_modules/edge-master/lib/native/win32/ia32/0.8.22/.gitignore:
--------------------------------------------------------------------------------
1 | ms*.dll
--------------------------------------------------------------------------------
/3th_modules/edge-master/lib/native/win32/ia32/0.8.22/edge_coreclr.node:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GimmerBot/talib-c/4f1d396440d1d612e8a5b9610d505f186af277c3/3th_modules/edge-master/lib/native/win32/ia32/0.8.22/edge_coreclr.node
--------------------------------------------------------------------------------
/3th_modules/edge-master/lib/native/win32/ia32/0.8.22/edge_nativeclr.node:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GimmerBot/talib-c/4f1d396440d1d612e8a5b9610d505f186af277c3/3th_modules/edge-master/lib/native/win32/ia32/0.8.22/edge_nativeclr.node
--------------------------------------------------------------------------------
/3th_modules/edge-master/lib/native/win32/ia32/4.1.1/.gitignore:
--------------------------------------------------------------------------------
1 | ms*.dll
--------------------------------------------------------------------------------
/3th_modules/edge-master/lib/native/win32/ia32/4.1.1/edge_coreclr.node:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GimmerBot/talib-c/4f1d396440d1d612e8a5b9610d505f186af277c3/3th_modules/edge-master/lib/native/win32/ia32/4.1.1/edge_coreclr.node
--------------------------------------------------------------------------------
/3th_modules/edge-master/lib/native/win32/ia32/4.1.1/edge_nativeclr.node:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GimmerBot/talib-c/4f1d396440d1d612e8a5b9610d505f186af277c3/3th_modules/edge-master/lib/native/win32/ia32/4.1.1/edge_nativeclr.node
--------------------------------------------------------------------------------
/3th_modules/edge-master/lib/native/win32/ia32/5.1.0/.gitignore:
--------------------------------------------------------------------------------
1 | ms*.dll
--------------------------------------------------------------------------------
/3th_modules/edge-master/lib/native/win32/ia32/5.1.0/edge_coreclr.node:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GimmerBot/talib-c/4f1d396440d1d612e8a5b9610d505f186af277c3/3th_modules/edge-master/lib/native/win32/ia32/5.1.0/edge_coreclr.node
--------------------------------------------------------------------------------
/3th_modules/edge-master/lib/native/win32/ia32/5.1.0/edge_nativeclr.node:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GimmerBot/talib-c/4f1d396440d1d612e8a5b9610d505f186af277c3/3th_modules/edge-master/lib/native/win32/ia32/5.1.0/edge_nativeclr.node
--------------------------------------------------------------------------------
/3th_modules/edge-master/lib/native/win32/ia32/6.4.0/.gitignore:
--------------------------------------------------------------------------------
1 | ms*.dll
--------------------------------------------------------------------------------
/3th_modules/edge-master/lib/native/win32/ia32/6.4.0/edge_coreclr.node:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GimmerBot/talib-c/4f1d396440d1d612e8a5b9610d505f186af277c3/3th_modules/edge-master/lib/native/win32/ia32/6.4.0/edge_coreclr.node
--------------------------------------------------------------------------------
/3th_modules/edge-master/lib/native/win32/ia32/6.4.0/edge_nativeclr.node:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GimmerBot/talib-c/4f1d396440d1d612e8a5b9610d505f186af277c3/3th_modules/edge-master/lib/native/win32/ia32/6.4.0/edge_nativeclr.node
--------------------------------------------------------------------------------
/3th_modules/edge-master/lib/native/win32/ia32/7.4.0/edge_coreclr.node:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GimmerBot/talib-c/4f1d396440d1d612e8a5b9610d505f186af277c3/3th_modules/edge-master/lib/native/win32/ia32/7.4.0/edge_coreclr.node
--------------------------------------------------------------------------------
/3th_modules/edge-master/lib/native/win32/ia32/7.4.0/edge_nativeclr.node:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GimmerBot/talib-c/4f1d396440d1d612e8a5b9610d505f186af277c3/3th_modules/edge-master/lib/native/win32/ia32/7.4.0/edge_nativeclr.node
--------------------------------------------------------------------------------
/3th_modules/edge-master/lib/native/win32/ia32/7.4.0/msvcr120.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GimmerBot/talib-c/4f1d396440d1d612e8a5b9610d505f186af277c3/3th_modules/edge-master/lib/native/win32/ia32/7.4.0/msvcr120.dll
--------------------------------------------------------------------------------
/3th_modules/edge-master/lib/native/win32/ia32/8.2.1/edge_coreclr.node:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GimmerBot/talib-c/4f1d396440d1d612e8a5b9610d505f186af277c3/3th_modules/edge-master/lib/native/win32/ia32/8.2.1/edge_coreclr.node
--------------------------------------------------------------------------------
/3th_modules/edge-master/lib/native/win32/ia32/8.2.1/edge_nativeclr.node:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GimmerBot/talib-c/4f1d396440d1d612e8a5b9610d505f186af277c3/3th_modules/edge-master/lib/native/win32/ia32/8.2.1/edge_nativeclr.node
--------------------------------------------------------------------------------
/3th_modules/edge-master/lib/native/win32/ia32/8.2.1/msvcr120.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GimmerBot/talib-c/4f1d396440d1d612e8a5b9610d505f186af277c3/3th_modules/edge-master/lib/native/win32/ia32/8.2.1/msvcr120.dll
--------------------------------------------------------------------------------
/3th_modules/edge-master/lib/native/win32/ia32/msvcp120.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GimmerBot/talib-c/4f1d396440d1d612e8a5b9610d505f186af277c3/3th_modules/edge-master/lib/native/win32/ia32/msvcp120.dll
--------------------------------------------------------------------------------
/3th_modules/edge-master/lib/native/win32/ia32/msvcr120.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GimmerBot/talib-c/4f1d396440d1d612e8a5b9610d505f186af277c3/3th_modules/edge-master/lib/native/win32/ia32/msvcr120.dll
--------------------------------------------------------------------------------
/3th_modules/edge-master/lib/native/win32/x64/0.10.0/.gitignore:
--------------------------------------------------------------------------------
1 | ms*.dll
--------------------------------------------------------------------------------
/3th_modules/edge-master/lib/native/win32/x64/0.10.0/edge_coreclr.node:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GimmerBot/talib-c/4f1d396440d1d612e8a5b9610d505f186af277c3/3th_modules/edge-master/lib/native/win32/x64/0.10.0/edge_coreclr.node
--------------------------------------------------------------------------------
/3th_modules/edge-master/lib/native/win32/x64/0.10.0/edge_nativeclr.node:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GimmerBot/talib-c/4f1d396440d1d612e8a5b9610d505f186af277c3/3th_modules/edge-master/lib/native/win32/x64/0.10.0/edge_nativeclr.node
--------------------------------------------------------------------------------
/3th_modules/edge-master/lib/native/win32/x64/0.12.0/.gitignore:
--------------------------------------------------------------------------------
1 | ms*.dll
--------------------------------------------------------------------------------
/3th_modules/edge-master/lib/native/win32/x64/0.12.0/edge_coreclr.node:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GimmerBot/talib-c/4f1d396440d1d612e8a5b9610d505f186af277c3/3th_modules/edge-master/lib/native/win32/x64/0.12.0/edge_coreclr.node
--------------------------------------------------------------------------------
/3th_modules/edge-master/lib/native/win32/x64/0.12.0/edge_nativeclr.node:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GimmerBot/talib-c/4f1d396440d1d612e8a5b9610d505f186af277c3/3th_modules/edge-master/lib/native/win32/x64/0.12.0/edge_nativeclr.node
--------------------------------------------------------------------------------
/3th_modules/edge-master/lib/native/win32/x64/0.8.22/.gitignore:
--------------------------------------------------------------------------------
1 | ms*.dll
--------------------------------------------------------------------------------
/3th_modules/edge-master/lib/native/win32/x64/0.8.22/edge_coreclr.node:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GimmerBot/talib-c/4f1d396440d1d612e8a5b9610d505f186af277c3/3th_modules/edge-master/lib/native/win32/x64/0.8.22/edge_coreclr.node
--------------------------------------------------------------------------------
/3th_modules/edge-master/lib/native/win32/x64/0.8.22/edge_nativeclr.node:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GimmerBot/talib-c/4f1d396440d1d612e8a5b9610d505f186af277c3/3th_modules/edge-master/lib/native/win32/x64/0.8.22/edge_nativeclr.node
--------------------------------------------------------------------------------
/3th_modules/edge-master/lib/native/win32/x64/4.1.1/.gitignore:
--------------------------------------------------------------------------------
1 | ms*.dll
--------------------------------------------------------------------------------
/3th_modules/edge-master/lib/native/win32/x64/4.1.1/edge_coreclr.node:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GimmerBot/talib-c/4f1d396440d1d612e8a5b9610d505f186af277c3/3th_modules/edge-master/lib/native/win32/x64/4.1.1/edge_coreclr.node
--------------------------------------------------------------------------------
/3th_modules/edge-master/lib/native/win32/x64/4.1.1/edge_nativeclr.node:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GimmerBot/talib-c/4f1d396440d1d612e8a5b9610d505f186af277c3/3th_modules/edge-master/lib/native/win32/x64/4.1.1/edge_nativeclr.node
--------------------------------------------------------------------------------
/3th_modules/edge-master/lib/native/win32/x64/5.1.0/.gitignore:
--------------------------------------------------------------------------------
1 | ms*.dll
--------------------------------------------------------------------------------
/3th_modules/edge-master/lib/native/win32/x64/5.1.0/edge_coreclr.node:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GimmerBot/talib-c/4f1d396440d1d612e8a5b9610d505f186af277c3/3th_modules/edge-master/lib/native/win32/x64/5.1.0/edge_coreclr.node
--------------------------------------------------------------------------------
/3th_modules/edge-master/lib/native/win32/x64/5.1.0/edge_nativeclr.node:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GimmerBot/talib-c/4f1d396440d1d612e8a5b9610d505f186af277c3/3th_modules/edge-master/lib/native/win32/x64/5.1.0/edge_nativeclr.node
--------------------------------------------------------------------------------
/3th_modules/edge-master/lib/native/win32/x64/6.4.0/.gitignore:
--------------------------------------------------------------------------------
1 | ms*.dll
--------------------------------------------------------------------------------
/3th_modules/edge-master/lib/native/win32/x64/6.4.0/edge_coreclr.node:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GimmerBot/talib-c/4f1d396440d1d612e8a5b9610d505f186af277c3/3th_modules/edge-master/lib/native/win32/x64/6.4.0/edge_coreclr.node
--------------------------------------------------------------------------------
/3th_modules/edge-master/lib/native/win32/x64/6.4.0/edge_nativeclr.node:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GimmerBot/talib-c/4f1d396440d1d612e8a5b9610d505f186af277c3/3th_modules/edge-master/lib/native/win32/x64/6.4.0/edge_nativeclr.node
--------------------------------------------------------------------------------
/3th_modules/edge-master/lib/native/win32/x64/7.3.0/edge_coreclr.node:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GimmerBot/talib-c/4f1d396440d1d612e8a5b9610d505f186af277c3/3th_modules/edge-master/lib/native/win32/x64/7.3.0/edge_coreclr.node
--------------------------------------------------------------------------------
/3th_modules/edge-master/lib/native/win32/x64/7.3.0/edge_nativeclr.node:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GimmerBot/talib-c/4f1d396440d1d612e8a5b9610d505f186af277c3/3th_modules/edge-master/lib/native/win32/x64/7.3.0/edge_nativeclr.node
--------------------------------------------------------------------------------
/3th_modules/edge-master/lib/native/win32/x64/7.3.0/msvcr120.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GimmerBot/talib-c/4f1d396440d1d612e8a5b9610d505f186af277c3/3th_modules/edge-master/lib/native/win32/x64/7.3.0/msvcr120.dll
--------------------------------------------------------------------------------
/3th_modules/edge-master/lib/native/win32/x64/7.4.0/edge_coreclr.node:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GimmerBot/talib-c/4f1d396440d1d612e8a5b9610d505f186af277c3/3th_modules/edge-master/lib/native/win32/x64/7.4.0/edge_coreclr.node
--------------------------------------------------------------------------------
/3th_modules/edge-master/lib/native/win32/x64/7.4.0/edge_nativeclr.node:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GimmerBot/talib-c/4f1d396440d1d612e8a5b9610d505f186af277c3/3th_modules/edge-master/lib/native/win32/x64/7.4.0/edge_nativeclr.node
--------------------------------------------------------------------------------
/3th_modules/edge-master/lib/native/win32/x64/7.4.0/msvcr120.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GimmerBot/talib-c/4f1d396440d1d612e8a5b9610d505f186af277c3/3th_modules/edge-master/lib/native/win32/x64/7.4.0/msvcr120.dll
--------------------------------------------------------------------------------
/3th_modules/edge-master/lib/native/win32/x64/730/.gitignore:
--------------------------------------------------------------------------------
1 | ms*.dll
--------------------------------------------------------------------------------
/3th_modules/edge-master/lib/native/win32/x64/730/edge_coreclr.node:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GimmerBot/talib-c/4f1d396440d1d612e8a5b9610d505f186af277c3/3th_modules/edge-master/lib/native/win32/x64/730/edge_coreclr.node
--------------------------------------------------------------------------------
/3th_modules/edge-master/lib/native/win32/x64/730/edge_nativeclr.node:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GimmerBot/talib-c/4f1d396440d1d612e8a5b9610d505f186af277c3/3th_modules/edge-master/lib/native/win32/x64/730/edge_nativeclr.node
--------------------------------------------------------------------------------
/3th_modules/edge-master/lib/native/win32/x64/8.2.1/edge_coreclr.node:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GimmerBot/talib-c/4f1d396440d1d612e8a5b9610d505f186af277c3/3th_modules/edge-master/lib/native/win32/x64/8.2.1/edge_coreclr.node
--------------------------------------------------------------------------------
/3th_modules/edge-master/lib/native/win32/x64/8.2.1/edge_nativeclr.node:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GimmerBot/talib-c/4f1d396440d1d612e8a5b9610d505f186af277c3/3th_modules/edge-master/lib/native/win32/x64/8.2.1/edge_nativeclr.node
--------------------------------------------------------------------------------
/3th_modules/edge-master/lib/native/win32/x64/8.2.1/msvcr120.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GimmerBot/talib-c/4f1d396440d1d612e8a5b9610d505f186af277c3/3th_modules/edge-master/lib/native/win32/x64/8.2.1/msvcr120.dll
--------------------------------------------------------------------------------
/3th_modules/edge-master/lib/native/win32/x64/msvcp120.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GimmerBot/talib-c/4f1d396440d1d612e8a5b9610d505f186af277c3/3th_modules/edge-master/lib/native/win32/x64/msvcp120.dll
--------------------------------------------------------------------------------
/3th_modules/edge-master/lib/native/win32/x64/msvcr120.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GimmerBot/talib-c/4f1d396440d1d612e8a5b9610d505f186af277c3/3th_modules/edge-master/lib/native/win32/x64/msvcr120.dll
--------------------------------------------------------------------------------
/3th_modules/edge-master/performance/.gitignore:
--------------------------------------------------------------------------------
1 | *.exe
2 | BookService/packages/
--------------------------------------------------------------------------------
/3th_modules/edge-master/performance/BookService/App.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/3th_modules/edge-master/performance/BookService/BookService.sln:
--------------------------------------------------------------------------------
1 |
2 | Microsoft Visual Studio Solution File, Format Version 12.00
3 | # Visual Studio 2012
4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BookService", "BookService.csproj", "{860AE049-3944-4CAB-A087-1CDEAEEFCC14}"
5 | EndProject
6 | Global
7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution
8 | Debug|Any CPU = Debug|Any CPU
9 | Release|Any CPU = Release|Any CPU
10 | EndGlobalSection
11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution
12 | {860AE049-3944-4CAB-A087-1CDEAEEFCC14}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
13 | {860AE049-3944-4CAB-A087-1CDEAEEFCC14}.Debug|Any CPU.Build.0 = Debug|Any CPU
14 | {860AE049-3944-4CAB-A087-1CDEAEEFCC14}.Release|Any CPU.ActiveCfg = Release|Any CPU
15 | {860AE049-3944-4CAB-A087-1CDEAEEFCC14}.Release|Any CPU.Build.0 = Release|Any CPU
16 | EndGlobalSection
17 | GlobalSection(SolutionProperties) = preSolution
18 | HideSolutionNode = FALSE
19 | EndGlobalSection
20 | EndGlobal
21 |
--------------------------------------------------------------------------------
/3th_modules/edge-master/performance/BookService/compile.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 | mcs -sdk:4.5 Program.cs /r:System.Net.Http.dll /r:System.ServiceModel.dll /r:System.Web.Http.dll /r:System.Web.Http.SelfHost.dll
3 |
--------------------------------------------------------------------------------
/3th_modules/edge-master/performance/BookService/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/3th_modules/edge-master/samples.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GimmerBot/talib-c/4f1d396440d1d612e8a5b9610d505f186af277c3/3th_modules/edge-master/samples.zip
--------------------------------------------------------------------------------
/3th_modules/edge-master/samples/101_hello_lambda.js:
--------------------------------------------------------------------------------
1 | // Overview of edge.js: http://tjanczuk.github.com/edge
2 |
3 | var edge = require('../lib/edge');
4 |
5 | var hello = edge.func('async (input) => { return ".NET welcomes " + input.ToString(); }');
6 |
7 | hello('Node.js', function (error, result) {
8 | if (error) throw error;
9 | console.log(result);
10 | });
--------------------------------------------------------------------------------
/3th_modules/edge-master/samples/102_hello_function.js:
--------------------------------------------------------------------------------
1 | // Overview of edge.js: http://tjanczuk.github.com/edge
2 |
3 | var edge = require('../lib/edge');
4 |
5 | var hello = edge.func(function () {/*
6 | async (input) =>
7 | {
8 | return ".NET welcomes " + input.ToString();
9 | }
10 | */});
11 |
12 | hello('Node.js', function (error, result) {
13 | if (error) throw error;
14 | console.log(result);
15 | });
--------------------------------------------------------------------------------
/3th_modules/edge-master/samples/103_hello_file.csx:
--------------------------------------------------------------------------------
1 | async (input) =>
2 | {
3 | return ".NET welcomes " + input.ToString();
4 | }
--------------------------------------------------------------------------------
/3th_modules/edge-master/samples/103_hello_file.js:
--------------------------------------------------------------------------------
1 | // Overview of edge.js: http://tjanczuk.github.com/edge
2 |
3 | var edge = require('../lib/edge');
4 |
5 | var hello = edge.func('103_hello_file.csx');
6 |
7 | hello('Node.js', function (error, result) {
8 | if (error) throw error;
9 | console.log(result);
10 | });
--------------------------------------------------------------------------------
/3th_modules/edge-master/samples/104_add7_class.js:
--------------------------------------------------------------------------------
1 | // Overview of edge.js: http://tjanczuk.github.com/edge
2 |
3 | var edge = require('../lib/edge');
4 |
5 | var add7 = edge.func(function () {/*
6 | using System.Threading.Tasks;
7 |
8 | public class Startup
9 | {
10 | public async Task