如何在DENO中使用npm模块?
Deno超级酷。我早上看过它,现在想迁移到deno。我试图将现有的nodejs脚本移至deno。谁能帮助我使用deno中的npm模块。我需要esprima模块。这个有包https://github.com/denoland/deno_third_party/tree/master/node_modules,但是我不知道怎么使用。
回答:
Deno提供了一个节点兼容性库,该库将允许使用一些不使用未填充Node.js
API的 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
from 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" }
]
:所使用的许多API
std/
仍然不稳定,因此您可能需要使用--unstable
flag
运行它。
尽管由于整个项目已经使用TypeScript编写,并且没有使用任何依赖关系,但是对于他们来说,将其适应Deno还是很容易的。他们需要做的就是.ts
在导入中使用扩展名。您也可以派生项目并进行更改。
// 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 masterimport esprima from 'https://raw.githubusercontent.com/jquery/esprima/master/src/esprima.ts';
const program = 'const answer = 42';
console.log(esprima.tokenize(program))
以上是 如何在DENO中使用npm模块? 的全部内容, 来源链接: utcz.com/qa/426078.html