An open API service indexing awesome lists of open source software.

https://github.com/wdalmut/sporasub-sp2

A set of stream to parse the sporasub sp2 .dive file
https://github.com/wdalmut/sporasub-sp2

dive sp2 sporasub watch

Last synced: 2 months ago
JSON representation

A set of stream to parse the sporasub sp2 .dive file

Awesome Lists containing this project

README

        

# Sporasub SP2 - Dive reader

A set of streams that read `.dive` files from Sporasub SP2 diving watch

```js
const page = require('sporasub-sp2/page');
const json = require('sporasub-sp2/to-json');

fs.createReadStream('my.dive')
.pipe(page())
.pipe(json())
.on('data', (dive) => {
console.log(dive); // object
});
;

```