- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
德诺 super 酷。早上看到了,现在想迁移到deno。我试图将我现有的 nodejs 脚本移动到 deno。任何人都可以帮助我了解如何在 deno 中使用 npm 模块。我需要 esprima 模块。这个有包https://github.com/denoland/deno_third_party/tree/master/node_modules但我无法弄清楚如何使用它。
最佳答案
Deno 提供 Node Compatibility Library ,这将允许使用一些不使用 non-polyfilled Node.js APIs 的 NPM 包.您将能够 require
使用 https://deno.land/std/node/module.ts
的包
以下作品适用于 deno 1.0.0
import { createRequire } from "https://deno.land/std/node/module.ts";
const require = createRequire(import.meta.url);
const esprima = require("esprima");
const program = 'const answer = 42';
console.log(esprima.tokenize(program))
上面的代码将使用
esprima
来自
node_modules/
.
--allow-read
旗帜
deno run --allow-read esprima.js
您只能将其限制为
node_modules
deno run --allow-read=node_modules esprima.js
哪个输出:
[
{ type: "Keyword", value: "const" },
{ type: "Identifier", value: "answer" },
{ type: "Punctuator", value: "=" },
{ type: "Numeric", value: "42" }
]
备注 :
std/
使用的许多 API仍然是
unstable ,因此您可能需要使用
--unstable
运行它旗帜。
.ts
在
their imports 上扩展.
// import { CommentHandler } from './comment-handler';
import { CommentHandler } from './comment-handler.ts';
// ...
一旦他们这样做,你就可以做到:
// Ideally they would issue a tagged release and you'll use that instead of master
import esprima from 'https://raw.githubusercontent.com/jquery/esprima/master/src/esprima.ts';
const program = 'const answer = 42';
console.log(esprima.tokenize(program))
选择
https://jspm.io/
这会将 NPM 模块转换为 ES 模块
All modules on npm are converted into ES modules handling fullCommonJS compatibility including strict mode conversions.
import esprima from "https://dev.jspm.io/esprima";
const program = 'const answer = 42';
console.log(esprima.tokenize(program))
对于使用 jspm 不支持的 Node.js 模块的包,它会抛出错误:
Uncaught Error: Node.js fs module is not supported by jspm core.
Deno support here is tracking in
https://github.com/jspm/jspm-core/issues/4, +1's are appreciated!
目前,您可以使用仅使用
Buffer
的包。 ,为此您必须包含
std/node
.
// import so polyfilled Buffer is exposed
import "https://deno.land/std/node/module.ts";
import BJSON from 'https://dev.jspm.io/buffer-json';
const str = BJSON.stringify({ buf: Buffer.from('hello') })
console.log(str);
关于javascript - 如何在 DENO 中使用 npm 模块?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61821038/
Deno 声称与浏览器兼容。这是否意味着它有一个窗口/导航器对象,这对于设置 window.location 之类的东西意味着什么? 最佳答案 Deno 中的全局对象目前仅称为 window (和 g
如果我这样做 deno --help表明: compile = 将脚本编译成一个独立的可执行文件 install = 将脚本安装为可执行文件 这两个命令有什么区别? 最佳答案 命令 输出 自包含 1
假设我有 2 个脚本,father.ts 和 child.ts,我如何从father.ts 生成child.ts 并定期从father.ts 向child.ts 发送消息? 最佳答案 您必须使用 Wo
我想卸载 Deno 及其所有缓存包。它在哪里缓存它的包?以及如何确保在安装新版本的 Deno 之前卸载所有缓存包。 最佳答案 如果您使用默认安装位置,那么这里是您系统上的 deno 缓存位置: By
Deno 不使用任何像 npm 这样的包管理器,它只使用 URL 导入第三方依赖项。让我们看下面的例子: 从“https://deno.land/x/abc@v1.0.0-rc8/mod.ts”导入{
我在我的电脑上安装了 1.10.2 版本,我想使用 deno 的最后版本所以如何更新 deno 的版本? 我应该使用安装命令并重新安装吗或者有类似的东西 npm install -g npm@late
来自 this answer ,我知道父进程可以与童工对话,但反过来呢? 最佳答案 从你必须使用的 worker Worker.postMessage self.postMessage('hi') 在
我有一个生成 javascript 的可执行文件,我想将其通过管道传输到 deno run 中,但是 run 子命令似乎只将脚本路径作为参数,并且不支持 - 从 stdin 读取的通常约定。 我知道但
有一个 Deno.watch api 可以监视文件系统事件: const watcher = Deno.watchFs("/"); for await (const event of watcher)
我有一个向外部支持服务发出网络请求的服务。请求使用 TLS,所以我不能使用任何类型的主机名别名,并且开发和生产环境有不同的主机名。 我知道我可以使用 deno package将我的应用程序捆绑成一个单
我从 Drash ( https://github.com/drashland/deno-drash ) 下载了示例应用程序$ deno run --allow-run --allow-read --
我使用 NodeJS,但我知道 Deno 是一个 future 。我真的很想学习 Deno 并为之做出贡献,但我不知道我该如何开始或真正正确的路线图我可以构建以遵循正确的道路。 我真的很想学习和控制它
在 Deno 中,可以对 import 语句中的依赖项进行版本控制,并且没有 package.json喜欢 npm . 但是如何在一个地方管理它的 URL 和版本? 我将在我的系统中声明多个文件和依赖
我之前在 deno 中安装了一些脚本。 如何在 deno 中列出所有已安装的脚本? 是否有任何 deno 子命令可以执行此操作? 最佳答案 所有下载的脚本都存储在 $DENO_DIR/deps $DE
例如,假设我有以下代码: Deno.run({cmd: ['echo', 'hello']}) 我如何收集该命令的输出 hello ? 最佳答案 Deno.run返回 Deno.Process 的实例
我已经安装了 deno通过运行脚本: deno install https://deno.land/std/examples/welcome.ts 我现在如何卸载这个脚本? deno 中是否有可以卸载
我正在尝试使用标准的 deno fs 模块,但编译器提示没有 --unstable 标志。 import { writeJson, readJson } from "https://deno.land
如何解析 deno 中的 URL像 node.js url.parse()? 最佳答案 在 Deno 中解析 URL 不需要外部模块。 URL类作为全局可用,就像在您的浏览器中一样: const ur
我正在使用橡木/deno。我有一个从提供的 ejs 文件提交的表单。如何访问表单正文?当我将它记录到控制台时,它会打印: {type: "form", value: URLSearchParamsIm
尝试在 Deno REPL 中导入模块会导致以下错误: Uncaught SyntaxError: Cannot use import statement outside a module a
我是一名优秀的程序员,十分优秀!