You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On the node:sqlite module doc page: https://docs.deno.com/api/node/sqlite/, it says that to access the module, I should import sqlite from 'node:sqlite'; and then it goes on to explain that the module is only available under the node: scheme and that doing import sqlite from 'node:sqlite'; will not work (which is exactly the same instruction as above). See picture:
Maybe there's some kind of module import rewriter that added "node:" in that invalid example?
I would have submitted a PR but searching around in this repo and a few others, I couldn't find the source text.
The text was updated successfully, but these errors were encountered:
Hello and thanks for the quality work.
On the
node:sqlite
module doc page: https://docs.deno.com/api/node/sqlite/, it says that to access the module, I shouldimport sqlite from 'node:sqlite';
and then it goes on to explain that the module is only available under thenode:
scheme and that doingimport sqlite from 'node:sqlite';
will not work (which is exactly the same instruction as above). See picture:Maybe there's some kind of module import rewriter that added "node:" in that invalid example?
I would have submitted a PR but searching around in this repo and a few others, I couldn't find the source text.
The text was updated successfully, but these errors were encountered: