NDH
Access default TypeScript compiler options
You can find the Deno default compiler options here:
https://docs.deno.com/runtime/reference/ts_config_migration/#ts-compiler-options
https://docs.deno.com/runtime/reference/ts_config_migration/#ts-compiler-options
2 replies
window install problem
That looks incorrect.
the line
Should have been
Note the missing backslash between yadav and ,deno.
Check that first path to see if it has a \bin folder in it.
If so something went wrong! Deno may have been added correctly in the path environment variable.
Please check your path environment variable.
in powershell enter $env:Path
It should contain: If it does, Deno may have been installed accidentally in the folder: rather than where it should be: If so, I would report this as a bug.
If so something went wrong! Deno may have been added correctly in the path environment variable.
Please check your path environment variable.
in powershell enter $env:Path
It should contain: If it does, Deno may have been installed accidentally in the folder: rather than where it should be: If so, I would report this as a bug.
11 replies
Tips for deploying Deno locally?
You may be interested in PUP.
https://github.com/Hexagon/pup
5 replies
Subprocess
Also, you may want to try DAX -- written by a Deno core team member.
https://github.com/dsherret/dax
13 replies
Make an image cropper that crops from data uri
drawImage can crop:
https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/drawImage
6 replies