Gathering detailed insights and metrics for fixio
Gathering detailed insights and metrics for fixio
npm install fixio
Typescript
Module System
Node Version
NPM Version
76.2
Supply Chain
96
Quality
93.4
Maintenance
100
Vulnerability
99.6
License
TypeScript (96.24%)
JavaScript (3.45%)
Shell (0.31%)
Total Downloads
72,784
Last Day
97
Last Week
818
Last Month
1,653
Last Year
16,311
12 Stars
81 Commits
6 Forks
2 Watching
1 Branches
5 Contributors
Minified
Minified + Gzipped
Latest Version
1.5.35
Package Id
fixio@1.5.35
Unpacked Size
236.46 kB
Size
50.82 kB
File Count
42
NPM Version
10.9.0
Node Version
23.3.0
Publised On
02 Feb 2025
Cumulative downloads
Total Downloads
Last day
5.4%
97
Compared to previous day
Last week
177.3%
818
Compared to previous week
Last month
94.2%
1,653
Compared to previous month
Last year
-35.6%
16,311
Compared to previous year
6
An implementation of the FIX protocol (Financial Information Exchange).
1npm install fixio
You can run learning tests by:
1npm test
1const { FIXServer, fixutil } = require("fixio") 2 3const serverOptions = { 4 port: 1234, 5 host: 'localhost' 6} 7 8const server = new FIXServer(serverOptions) 9server.fixIn$.subscribe(fix => { 10 console.log('jsonIn', fixutil.convertToJSON(fix)) 11}) 12server.fixOut$.subscribe(fix => { 13 console.log('jsonOut', fixutil.convertToJSON(fix)) 14}) 15server.error$.subscribe(e => console.error(e)) 16server.listen()
1const { FIXClient, fixutil } = require("fixio") 2 3const client = new FIXClient("FIX.4.4", "initiator", "acceptor", {}) 4 5client.connect(1234, 'localhost') 6client.fixIn$.subscribe(fix => { 7 console.log('initiator jsonIn', fixutil.convertToJSON(fix)) 8}) 9client.fixOut$.subscribe(fix => { 10 console.log('initiator jsonOut', fixutil.convertToJSON(fix)) 11}) 12client.error$.subscribe(e => console.log(e))
You can use a containerized npm run inside a docker container by using the npm
script:
1./npm install
Copyright (C) 2018 by Rafal Okninski
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
no dangerous workflow patterns detected
Reason
license file detected
Details
Reason
0 existing vulnerabilities detected
Reason
10 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 9
Reason
Found 4/29 approved changesets -- score normalized to 1
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Score
Last Scanned on 2025-01-27
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More