Digital signal processing utilities as RxJS operators for working with EEG data in Node and the Browser
npm install @neurosity/pipes#### By Neurosity
Blazing fast EEG transformers implemented as "Pipeable" RxJS operators for Node and the Browser.
Features include:
- FFT
- PSD and Power Bands
- Buffering and Epoching
- IIR Filters
- Signal Quality (new)
- and more.
Get started by installing the library:
```
npm install @neurosity/pipes
`bash`
npm install @neurosity/pipes
Then import the module
##### ESM
`js`
import { epoch } from "@neurosity/pipes";
##### Node
`js`
const { epoch } = require("@neurosity/pipes");
##### Browser
`html