{"id":41921466,"url":"https://github.com/cryptogarageinc/cg-cfd-js","last_synced_at":"2026-01-25T16:41:48.581Z","repository":{"id":40863614,"uuid":"205845641","full_name":"cryptogarageinc/cg-cfd-js","owner":"cryptogarageinc","description":null,"archived":false,"fork":false,"pushed_at":"2025-11-18T00:52:30.000Z","size":2410,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-11-18T02:18:38.969Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cryptogarageinc.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2019-09-02T11:49:09.000Z","updated_at":"2025-11-18T00:07:50.000Z","dependencies_parsed_at":"2025-03-10T00:22:32.693Z","dependency_job_id":"2e19510f-9885-4f1c-9346-bfb7815adb58","html_url":"https://github.com/cryptogarageinc/cg-cfd-js","commit_stats":null,"previous_names":[],"tags_count":12,"template":false,"template_full_name":null,"purl":"pkg:github/cryptogarageinc/cg-cfd-js","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cryptogarageinc%2Fcg-cfd-js","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cryptogarageinc%2Fcg-cfd-js/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cryptogarageinc%2Fcg-cfd-js/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cryptogarageinc%2Fcg-cfd-js/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cryptogarageinc","download_url":"https://codeload.github.com/cryptogarageinc/cg-cfd-js/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cryptogarageinc%2Fcg-cfd-js/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28755558,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-25T16:32:25.380Z","status":"ssl_error","status_checked_at":"2026-01-25T16:32:09.189Z","response_time":113,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-01-25T16:41:48.514Z","updated_at":"2026-01-25T16:41:48.573Z","avatar_url":"https://github.com/cryptogarageinc.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Crypto Finance Development Kit for JavaScript (CFD-JS)\n\nJavaScript wrapper of cfd libraries\n\n\u003c!-- TODO: Write Summary and Overview\n\n## Overview\n\n--\u003e\n\n## Dependencies\n\n- C/C++ Compiler\n  - can compilefe c++11\n- CMake (3.14.3 or higher)\n- Python 3.x\n- node.js (stable version)\n\n### Windows\n\ndownload and install files.\n- Visual Studio (Verified version is 2017 or higher)\n  - use for compiler only\n- Visual Studio Build Tools (2017 or higher)\n- cmake (3.14.3 or higher)\n- Python 3.x\n\n### MacOS\n\n- [Homebrew](https://brew.sh/)\n\n```Shell\n# xcode cli tools\nxcode-select --install\n\n# install dependencies using Homebrew\nbrew install cmake python node\n```\n\n### Linux(Ubuntsu)\n\n```Shell\n# install dependencies using APT package Manager\napt-get install -y build-essential cmake python nodejs\n```\n\ncmake version 3.14.2 or lower, download from website and install cmake.\n(https://cmake.org/download/)\n\n---\n\n## Build\n\n### Using cmake-js\n\nWhen using the cmake-js package and npm script, the options for compilation are already set.\n\n```Shell\nnpm install\nnpm run cmake_all\n```\n\n\u003c!--\nNOTICE: CMAKE IS NOT SUPPORT YET UNDER WINDOWS OS\n\n### Use CMake\n\n```Shell\n# recommend out of source build\nmkdir build \u0026\u0026 cd $_\n# configure \u0026 build\ncmake .. (CMake options)\nmake\n```\n\n``` (windows) command prompt example\ncmake -S . -B build  -G \"Visual Studio 16 2019\"\ncmake -D ENABLE_SHARED=1 --build build\ncmake --build build --config Release\n```\n\n**CMake options**\n\n- `-DENABLE_ELEMENTS`: Enable functionalies for elements sidechain. [ON/OFF] (default:ON)\n- `-DENABLE_DEBUG`: Enable debug loggings and log files. [ON/OFF] (default:OFF)\n- `-DENABLE_SHARED`: Enable building a shared library. [ON/OFF] (default:OFF)\n- `-DENABLE_TESTS`: Enable building a testing codes. If enables this option, builds testing framework submodules(google test) automatically. [ON/OFF] (default:ON)\n\n--\u003e\n\n---\n\n## Example\n\n### Test\n\n```Shell\nnpm run test_all\n```\n\n### Example\n\n### Bitcoin\n\n```\nnpm run example\n```\n\n### Elements\n\n```\nnpm run elements_example\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcryptogarageinc%2Fcg-cfd-js","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcryptogarageinc%2Fcg-cfd-js","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcryptogarageinc%2Fcg-cfd-js/lists"}