tdiprima commented on issue #39114:
URL: https://github.com/apache/arrow/issues/39114#issuecomment-1874451118
Hi Kyle,
I'm assuming you mean something like this...
```html
<script src="../targets/es2015/umd/Arrow.js"></script>
<script type="module">
import { tableFromIPC } from "apache-arrow";
const table = await tableFromIPC(fetch("hello_world.arrow"));
console.table([...table]);
</script>
```
But the console error says: The specifier “apache-arrow” was a bare
specifier, but was not remapped to anything. Relative module specifiers must
start with “./”, “../” or “/”.
I'm guessing I'm either using the wrong JavaScript file, or the `import` is
wrong. Any ideas?
Thanks again. I really appreciate your help.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]