gpt4 book ai didi

javascript - 在 PEG.js 语法中使用 Node.JS 语句

转载 作者:太空宇宙 更新时间:2023-11-04 00:21:46 25 4
gpt4 key购买 nike

在我的语法规则中,我需要检查目录是否存在。
但是,似乎我无法在 JS 语法中使用 Node.JS 特定代码。
这是对的吗?有什么解决办法吗?
如果问题很愚蠢,谢谢并抱歉:)

语法示例:

{
var fs = require('fs');

function isDirectoryExists(dir) {
return fs.existsSync(path);
}
}

Main = "stub"

PEG.js 的输出 online playground :

require is not defined

最佳答案

Node.JS特定代码在主机上的 Node 环境中完美运行。
但在我的浏览器中却没有,那里没有 Node。

因此,PEG.JS 在线 Playground 只能执行普通 JavaScript 代码。
但这是浏览器的限制,而不是 PEG.js。

关于javascript - 在 PEG.js 语法中使用 Node.JS 语句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44342095/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com