1.0.0 • Published 9 months ago

@aegisjsproject/url v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
9 months ago

@aegisjsproject/url

Safe URL parsing/escaping via JS tagged templates

CodeQL Node CI Lint Code Base

GitHub license GitHub last commit GitHub release GitHub Sponsors

npm node-current npm bundle size gzipped npm

GitHub followers GitHub forks GitHub stars Twitter Follow

Donate using Liberapay


Installation

npm i @aegisjsproject/url

Usage

import { url } from '@aegisjsproject/url';

// Santize user input (encodes and escapes as necessary)
const url1 = url`https://example.com/${userInput}`;
const url2 = url`${location.origin}/path/${someVar}`;

// Create a `blob:` URI from a file
const file = new File(['Hello, World!'], hi.txt, { type: 'text/plain' });
const download = `<a href="${url`file`}" download="${file.name}">Download File</a>`;
1.0.0

9 months ago