-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
'Uncaught Package not found fili' error when trying to use eeg-pipes 2.0.2 with muse-js example #23
Comments
We're taking a look at this. Can you confirm whether fili is in your project's |
Thank you, muse-js is using
When I use I double checked that indeed |
For cleaner way to reproduce this, I've created a repo here https://github.com/tanvach/muse-fft It's a simple react app that imports muse-js and eeg-pipes. You can run using the usual |
|
I've been trying to use
bufferFFT()
example code with muse-js example (link).How to replicate the issue:
yarn add eeg-pipes
inmuse-js
directoryimport { bufferFFT, alphaPower } from "eeg-pipes";
to top ofmain.ts
fileclient.eegReadings.subscribe(reading => {console.log(reading);});
, addclient.eegReadings.pipe(bufferFFT({ bins: 256 }), alphaPower()).subscribe(buffer => console.log(buffer));
yarn start
and loadhttp://localhost:4445/
Uncaught Package not found fili
@jdpigeon suggested to use v1.x. I've found v1.2.0 would give
Uncaught Package not found babel-runtime
error, but v1.1.0 seems to load fine.The text was updated successfully, but these errors were encountered: