CoffeeScript 主要?

发布于 2024-11-25 07:29:17 字数 292 浏览 0 评论 0原文

我想要一个仅在未导入 my 的情况下运行的 main 函数,但是 实际运行而不是导入。

在coffeescript中是否有相当于python的name ==“ma​​in”?

现在我正在使用

is_main = process.argv[1]==__filename
if is_main
    main()

,但我不知道是否存在更惯用的东西,我注意到 它不适用于旧版本的 CoffeeScript。

I'd like to have a main function that is run only if my is not imported but
actually run and not imported.

Is there an equivalent to python's name == "main" in coffeescript?

Right now I'm using

is_main = process.argv[1]==__filename
if is_main
    main()

but I don't know if something more idiomatic exists, and I noticed
it did not work with older versions of coffeescript.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

野心澎湃 2024-12-02 07:29:17

相关JS问题< /a>

main() 如果 require.main 是模块

Related JS question

main() if require.main is module

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文