{"id":15410152,"url":"https://github.com/drewnoakes/fix-decoder","last_synced_at":"2025-04-14T13:08:11.699Z","repository":{"id":5820041,"uuid":"7035319","full_name":"drewnoakes/fix-decoder","owner":"drewnoakes","description":"Unravels FIX messages into human readable tables","archived":false,"fork":false,"pushed_at":"2023-02-03T07:14:00.000Z","size":917,"stargazers_count":82,"open_issues_count":24,"forks_count":35,"subscribers_count":10,"default_branch":"master","last_synced_at":"2025-03-28T02:12:23.716Z","etag":null,"topics":["decoder","fix","fixprotocol","javascript","trading"],"latest_commit_sha":null,"homepage":"https://drewnoakes.com/fix-decoder/","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/drewnoakes.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2012-12-06T12:35:06.000Z","updated_at":"2024-12-11T11:38:58.000Z","dependencies_parsed_at":"2023-02-18T04:30:42.825Z","dependency_job_id":null,"html_url":"https://github.com/drewnoakes/fix-decoder","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/drewnoakes%2Ffix-decoder","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/drewnoakes%2Ffix-decoder/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/drewnoakes%2Ffix-decoder/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/drewnoakes%2Ffix-decoder/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/drewnoakes","download_url":"https://codeload.github.com/drewnoakes/fix-decoder/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248886316,"owners_count":21177643,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["decoder","fix","fixprotocol","javascript","trading"],"created_at":"2024-10-01T16:43:26.213Z","updated_at":"2025-04-14T13:08:11.089Z","avatar_url":"https://github.com/drewnoakes.png","language":"JavaScript","readme":"FIX Decoder\r\n===========\r\n\r\nVisit the live site at [https://drewnoakes.com/fix-decoder/](https://drewnoakes.com/fix-decoder/)\r\n\r\n![Screenshot of FIX Decoder](https://raw.github.com/drewnoakes/fix-decoder/master/src/img/fix-decoder-screen-shot.png \"A screen shot showing FIX Decoder in action\")\r\n\r\nA convenient and powerful decoder for FIX messages.\r\n\r\nAll processing is done locally in your browser, so no one can snoop on your messages.\r\n\r\nUnlike the most prominent online FIX message decoder, this version is open source so\r\nyou can prove that your messages are safe.  This version supports a wider range of message\r\nrepresentations too, including multiple messages.\r\n\r\nFor example, you can paste directly from a QuickFIX log:\r\n\r\n\u003e \u0026lt;20121206-12:04:56, FIX.4.2:MyComp-\u0026gt;YourComp, outgoing\u0026gt; (8=FIX.4.2 9=189 35=AE 34=510 49=MyComp 52=20121206-12:04:56.898 56=YourComp 22=4 31=157.8 32=10 43=N 48=GB00B16GWD56 60=20121206-12:04:56.891 64=20121206 150=0 570=N 571=TRADE_ID_88871 828=0 918=GBX 10=028 )\r\n\u003e\r\n\u003e \u0026lt;20121206-12:05:06, FIX.4.2:MyComp-\u0026gt;YourComp, incoming\u0026gt; (8=FIX.4.2 9=119 35=AR 49=YourComp 56=MyComp 34=753 52=20121206-12:05:08 370=20121206-12:04:58.744 571=TRADE_ID_88871 150=0 939=0 10=106 )\r\n\r\nNote the leading text is ignored, and that there are multiple messages.\r\nAlso the non-printable `SOH` character (`\\001`) is handled correctly.\r\n\r\nUsing pipe characters (`|`) as separators is also supported.\r\n\r\nHow to build\r\n============\r\n\r\nIn order to build this project, you need to have 2 tools installed on your computer: yarn (package manager), and gulp (build system). Please find below the link to their respective documentation:\r\n* [Yarn installation documentation](https://yarnpkg.com/lang/en/docs/install/)\r\n* [Gulp Getting Started wiki page](https://github.com/gulpjs/gulp/tree/master/docs/getting-started)\r\n\r\nTo download the dependancies, run on the repository's folder:\r\n\r\n\u003e yarn install\r\n\r\nThen to build the project, just type:\r\n\r\n\u003e gulp\r\n\r\nThe files will be copied on the 'dist' directory.\r\n\r\nLicense\r\n=======\r\n\r\nThis program is free software: you can redistribute it and/or modify\r\nit under the terms of the GNU General Public License as published by\r\nthe Free Software Foundation, either version 3 of the License, or\r\n(at your option) any later version.\r\n\r\nThis program is distributed in the hope that it will be useful,\r\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\r\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r\nGNU General Public License for more details.\r\n\r\nYou should have received a copy of the GNU General Public License\r\nalong with this program.  If not, see \u003chttp://www.gnu.org/licenses/\u003e.\r\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdrewnoakes%2Ffix-decoder","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdrewnoakes%2Ffix-decoder","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdrewnoakes%2Ffix-decoder/lists"}