Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

178
Views
How to determine the location of the deno script?

Let's say I issue the following command:

deno run --allow-read /scripts/where-am-i.ts

What would need to be inside where-am-i.ts for it to output:

/scripts

I've tried:

console.log(Deno.cwd());

which prints the directory the script was called from (/ in this example).

I have also tried:

console.log(Deno.execPath());

which prints the location of the deno binary (~/.cargo/bin/deno for me).

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

You can use some utilities from the std/path module to determine the directory of a module, based on its import meta:

so-72156289.ts:

import * as path from "https://deno.land/std@0.138.0/path/mod.ts";

function getModuleDir(importMeta: ImportMeta): string {
  return path.resolve(path.dirname(path.fromFileUrl(importMeta.url)));
}

const dir = getModuleDir(import.meta);
console.log(dir);

$ deno run /Users/deno/examples/so-72156289.ts
/Users/deno/examples

about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!