https://github.com/robloach/datfile
ClrMamePro DAT file parser for Node.js
https://github.com/robloach/datfile
Last synced: 11 months ago
JSON representation
ClrMamePro DAT file parser for Node.js
- Host: GitHub
- URL: https://github.com/robloach/datfile
- Owner: RobLoach
- Created: 2016-08-03T07:12:41.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2024-09-10T21:56:19.000Z (almost 2 years ago)
- Last Synced: 2025-07-07T15:03:18.134Z (12 months ago)
- Language: JavaScript
- Homepage:
- Size: 447 KB
- Stars: 6
- Watchers: 2
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# robloach-datfile
A [clrmamepro .dat file format](https://github.com/SabreTools/SabreTools/wiki/DatFile-Formats#clrmamepro-format) parser for Node.js.
## Usage
``` javascript
var datfile = require('robloach-datfile')
datfile.parseFile('file.dat').then(function (database) {
console.log(database)
})
```