Skip to content

*command-line-args* does not survive loadFile() #372

Open
@chr15m

Description

@chr15m

version

v1.3.195

platform

Linux: Ubuntu
Node: v20.17.0

problem

You can use *command-line-args* to get args in a .cljs script, but if you then invoke that cljs script from JavaScript the args are nil.

repro

(ns args)
(print *command-line-args*)
import { loadFile } from "nbb";
await loadFile("args.cljs");

Running these:

$ npx nbb args.cljs --hello
(--hello)
$ node args.mjs --hello
nil

expected behavior

I think I would expect the output of the second command to match the first.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions