{"id":18509333,"url":"https://github.com/lgsinnovations/sigfile","last_synced_at":"2025-04-09T03:32:31.856Z","repository":{"id":31943247,"uuid":"130935050","full_name":"LGSInnovations/sigfile","owner":"LGSInnovations","description":"Module to read signal data from files","archived":false,"fork":false,"pushed_at":"2023-01-06T03:26:23.000Z","size":9850,"stargazers_count":4,"open_issues_count":29,"forks_count":3,"subscribers_count":7,"default_branch":"master","last_synced_at":"2025-03-23T23:14:13.979Z","etag":null,"topics":["digital-signal-processing","dsp","file-parser","javascript","matlab","parsing"],"latest_commit_sha":null,"homepage":"https://lgsinnovations.github.io/sigfile","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/LGSInnovations.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}},"created_at":"2018-04-25T01:45:02.000Z","updated_at":"2024-05-03T15:58:16.000Z","dependencies_parsed_at":"2023-01-14T20:10:39.930Z","dependency_job_id":null,"html_url":"https://github.com/LGSInnovations/sigfile","commit_stats":null,"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LGSInnovations%2Fsigfile","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LGSInnovations%2Fsigfile/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LGSInnovations%2Fsigfile/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LGSInnovations%2Fsigfile/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/LGSInnovations","download_url":"https://codeload.github.com/LGSInnovations/sigfile/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247973973,"owners_count":21026738,"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":["digital-signal-processing","dsp","file-parser","javascript","matlab","parsing"],"created_at":"2024-11-06T15:17:16.321Z","updated_at":"2025-04-09T03:32:31.567Z","avatar_url":"https://github.com/LGSInnovations.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"SigFile\n======================\n\n[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0) [![Build Status](https://travis-ci.org/LGSInnovations/sigfile.svg?branch=master)](https://travis-ci.org/LGSInnovations/sigfile) [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](.github/CONTRIBUTING.md#pull-requests) [![npm version](https://badge.fury.io/js/sigfile.svg)](https://badge.fury.io/js/sigfile) [![codecov](https://codecov.io/gh/LGSInnovations/sigfile/branch/master/graph/badge.svg)](https://codecov.io/gh/LGSInnovations/sigfile)\n\nSigFile provides MATLAB file parsing and XMIDAS Bluefile parsing in JS.\n\n## Installation\n\n```\nnpm i sigfile\n```\n\nor\n\n```\nyarn add sigfile\n```\n\n## Example\n\n### Extracting the header from a Bluefile\n\n```javascript\nconst bluefile = require('sigfile').bluefile;\nconst fs = require('fs');\n\nfs.readFile('./tests/dat/ramp.tmp', function(err, buf) {\n    const header = new sigfile.BlueHeader(buf.buffer);\n    console.log(header);\n});\n```\n\nor\n\n```javascript\nimport { readFile } from 'fs';\nimport { bluefile } from 'sigfile';\n\nreadFile('./tests/dat/ramp.tmp', (err, buf) =\u003e {\n    const header = new bluefile.BlueHeader(buf.buffer);\n    console.log(header);\n});\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flgsinnovations%2Fsigfile","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flgsinnovations%2Fsigfile","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flgsinnovations%2Fsigfile/lists"}