[proxy] jsr.io← back | site home | direct (HTTPS) ↗ | proxy home | ◑ dark◐ light
Skip to main content
Home

@david/path@0.2.0
Built and signed on GitHub Actions

Works with
This package works with Deno
JSR Score100%
Downloads653/wk
Published2 years ago (0.2.0)

Path class for JavaScript built on top of Deno's standard library.

@david/path

Path class for JavaScript built on top of @std/path and @std/fs.

Setup

deno add @david/path

Example

import { Path } from "@david/path";

const srcDir = new Path("src");

console.log(srcDir.existsSync());

const dataFile = srcDir.join("data.txt");
dataFile.writeTextSync("Hello there!");

Road to 1.0

I would like to stabilize this, but first I want to get more feedback on it.

Built and signed on
GitHub Actions

Report package

Please provide a reason for reporting this package. We will review your report and take appropriate action.

Please review the JSR usage policy before submitting a report.

Add Package

deno add jsr:@david/path

Import symbol

import * as path from "@david/path";
or

Import directly with a jsr specifier

import * as path from "jsr:@david/path";