-
Notifications
You must be signed in to change notification settings - Fork 2
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
Updating sda page #4
base: main
Are you sure you want to change the base?
Conversation
@nshiab is attempting to deploy a commit to the Fil's projects Team on Vercel. A member of the Team first needs to authorize it. |
|
||
```js echo | ||
import {SimpleDB} from "npm:simple-data-analysis@2"; | ||
import { SimpleWebDB } from "https://esm.sh/jsr/@nshiab/simple-data-analysis@3.15.3/web"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd want this to work:
import {SimpleWebDB} from "jsr:@nshiab/simple-data-analysis@3/web";
unfortunately it fails with Missing "./web" specifier in "@jsr/nshiab__simple-data-analysis" package
, which may be an issue with the package or with framework (?). I'm not sure how to fix it yet.
Note that ideally, I'd want this:
import {SimpleWebDB} from "jsr:@nshiab/simple-data-analysis@3";
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would also want to use a self-hosted version of DuckDB, instead of loading it from jsdeliver
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
From what I see in the console when I switch to import { SimpleWebDB } from "jsr:@nshiab/[email protected]/web";
, it's a problem with the library. I'll investigate and come back to you!
await tableTemperature.fetchData( | ||
"https://raw.githubusercontent.com/nshiab/simple-data-analysis/main/test/data/files/dailyTemperatures.csv", | ||
); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note to self: host this file in /data/
Updating sda to v3.
Thanks!