Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/justjavac/deno_template_dir

Returns the path to the user's template directory.
https://github.com/justjavac/deno_template_dir

deno deno-mod deno-module dir path system

Last synced: 5 days ago
JSON representation

Returns the path to the user's template directory.

Awesome Lists containing this project

README

        

# deno_template_dir

[![tag](https://img.shields.io/github/release/justjavac/deno_template_dir)](https://github.com/justjavac/deno_template_dir/releases)
[![Build Status](https://github.com/justjavac/deno_template_dir/workflows/ci/badge.svg?branch=master)](https://github.com/justjavac/deno_template_dir/actions)
[![license](https://img.shields.io/github/license/justjavac/deno_template_dir)](https://github.com/justjavac/deno_template_dir/blob/master/LICENSE)
[![](https://img.shields.io/badge/deno-v1.3-green.svg)](https://github.com/denoland/deno)

Returns the path to the user's template directory.

The returned value depends on the operating system and is either a string,
containing a value from the following table, or `null`.

|Platform | Value | Example |
| ------- | ---------------------- | -------------------------------------------------------------- |
| Linux | `XDG_TEMPLATES_DIR` | /home/justjavac/Templates |
| macOS | – | – |
| Windows | `{FOLDERID_Templates}` | C:\Users\justjavac\AppData\Roaming\Microsoft\Windows\Templates |

## Usage

Requires `allow-env` permission.

Returns `null` if there is no applicable directory or if any other error occurs.

```ts
import templateDir from "https://deno.land/x/template_dir/mod.ts";

templateDir();
// Lin: "/home/justjavac/Templates"
// Mac: null
// Win: "C:\Users\justjavac\AppData\Roaming\Microsoft\Windows\Templates"
```

## License

[deno_template_dir](https://github.com/justjavac/deno_template_dir) is released under the MIT License. See the bundled [LICENSE](./LICENSE) file for details.