teki
TypeScript icon, indicating that this package has built-in type declarations

1.2.2 • Public • Published

Teki

A super tiny TypeScript path parser (1.3kb gzipped!) with a surprising amount of features.

Installation

npm install --save teki or yarn add teki.

Usage

import { parse } from 'teki'
 
const userRoute =
  parse('/user/:id/messages?page=:page')
 
>> userRoute('http://localhost/user/123/messages?page=3)')
{ id'123', page'3' }

Reverse parsing

teki can reverse parse parameter dictionaries into URLs

import { reverse } from 'teki'
 
const reverseUserRoute =
  reverse('/user/:id/messages?page=:page')
 
>> reverseUserRoute({ id: 456, page: 9 })
'/user/456?page=9'

Query Parameters

teki is smart about query parameters, and will parse them independently of order

const queryRoute =
  parse('/myRoute?foo=:foo&bar=:bar')
 
>> queryRoute('http://localhost/myRoute?bar=hello&foo=world')
{ bar'hello', foo'world' }

List query parameters

teki supports list query parameters on the for ?id=1&id=2&id=3 by using the postfixing the parameter name with *

const listQuery =
  parse('/myRoute?id*=:ids')
 
>> listQuery('http://localhost/myRoute')
{}
 
>> listQuery('http://localhost/myRoute?id=1&id=2&id=3')
{ ids['1', '2', '3'] }

Optional query parameters

Query parameters can be made optional by postfixing its parameter name with ?

const optionalQuery =
  parse('/myRoute?foo?=:foo&bar?=:bar')
 
>> optionalQuery('http://localhost/myRoute')
{ foonull, barnull }
 
>> optionalQuery(''http://localhost/myRoute?foo=test')
{ foo: 'test', bar: null }

Hash parameters

const hashParam =
  parse('/myRoute#:section')
 
>> hashParam('http://localhost/myRoute#test')
{ sectiontest }

Refining paths using regular expressions

teki even let's you refine named parameters using regular expressions by writing a regex after the name in angle brackets

// Only match routes where id is numeric
const userRoute =
  parse('/user/:id<\\d+>')
  
>> userRoute('http://localhost/user/foo')
null
 
>> userRoute('http://localhost/user/123')
{ id'123' }

How does it work?

teki achieves its small size and high performance by using the native URL API instead of a custom parser.

Keep in mind that this means that it will not work without a polyfill for URL in Internet Explorer.

API

type RouteParams

type RouteParams = 
  Record<string, string | null>

The structure of the object returned when successfully parsing a pattern.

parse

parse :: (pattern : string) => (url: string) => null | RouteParams

Parse a pattern, then accept a url to match. Returns null on a failed match, or a dictionary with parameters on success.

This function is curried so that its faster on repeated usages.

reverse

reverse :: (pattern : string) => (dict: RouteParams) => string

Use a dictionary to reverse-parse it back into a URL using the specified pattern.

This function will throw if the dictionary has missing parameters that are specified in the pattern.

This function is curried so that its faster on repeated usages.

Dependencies (0)

    Dev Dependencies (11)

    Package Sidebar

    Install

    npm i teki

    Weekly Downloads

    66

    Version

    1.2.2

    License

    MIT

    Unpacked Size

    10.3 kB

    Total Files

    18

    Last publish

    Collaborators

    • phni