Will it support Deno Runtime environment??

Will there be a chance to support Deno (https://deno.land/) in the future?

I would say 'yes' if someone wants to spend the time to figure out a way to do it and they write the code.

Have you tried it? Maybe it works?

Hmm, not off to a good start:

C:\src
> irm https://deno.land/install.ps1 | iex
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
100   212  100   212    0     0    220      0 --:--:-- --:--:-- --:--:--   803
tar.exe: Error opening archive: Unrecognized archive format
Deno was installed successfully to C:\Users\userid\.deno\bin\deno.exe
Run 'deno --help' to get started
Stuck? Join our Discord https://discord.gg/deno
C:\src
> deno --help
deno: The term 'deno' is not recognized as a name of a cmdlet, function, script file, or executable program.
Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
C:\src
>

Had to dig for an alternative install. Run as admin:

# Run as administrator:
$env:DENO_INSTALL = "C:\Program Files\deno"
irm https://deno.land/install.ps1 | iex

That worked but only runs in the admin powershell window, not in a standard window.

And some quick tests completely failed to run node-red.

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.