GithubHelp home page GithubHelp logo

file-url's Introduction

@wed-std/file-url

Universal library for turning file system paths into file:// URLs. It does not depend on other libraries nor nodejs built-ins and works just the same across node and web without any polyfills.

Why

This libary is intended to facilitate a more web friendly (or rather runtime agnostic) alternative way to refer to files via URLs as opposed to node's path module.

And because node's fs APIs accept file:// URLs in place of paths URLs can be used without having to going bath to paths.

Usage

URLs are OS agnostic

Correct file URLs are created for posix & windows paths regardless of host runtime OS.

import { fromPath } from "@wed-std/file-url"

fromPath("/Users/web-std/file-url/Readme.md").href
//> 'file:///Users/web-std/file-url/Readme.md'

fromPath("C:\\web-std\\file-url\\tscofig.json").href
//> "file:///C:/web-std/file-url/tsconfig.json"

fromPath("\\\\192.168.0.1\\share\\path\\file.txt").href
//> "file://192.168.0.1/share/path/file.txt"

Resolve to base URL

You can use standard URLs to do resolution simply by passing a base URL, making it effective alternative to node's path.resolve / path.join.

new URL("baz/asdf", fromPath("/foo/bar/")).href
// file:///foo/bar/baz/asdf

new URL("../beep.txt", fromPath("/foo/bar/")).href
// file:///foo/beep.txt

new URL("/root/foo", fromPath("/foo/bar/")).href
// file:///root/foo

URLs are normalized

Standard URLs are normalized out of the box so you don't really need an equivalent of path.normalize.

fromPath("/foo/bar/baz/asdf/quux/.././file.md").href
// file:///foo/bar/baz/asdf/file.md

new URL("/.././file.md", fromPath("/foo/bar/baz/asdf/quux/"))
// file:///foo/bar/baz/asdf/file.md

Basename are straight forward

URLs do not have equivalent of path.basename but given that they are normalized and use only forward slashes it's pretty straight forward:

fromPath("/foo/bar.html").pathname.split("/").pop()
//> bar.html

Can break free of try/catch

Sometimes surrounding logic with try / catch blocks introduces incidental complexity. Library provides tryFromPath function to keep things simple when it makes nence

import { tryFromPath } from "@wed-std/file-url"

// Unlike `fromPath` invalid paths do not throw just return null.
const url = tryFromPath(foo) || tryFromPath(bar)

Install

npm install @web-std/file-url

file-url's People

Contributors

gozala avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.