npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

merl

v13.0.5

Published

Build url paths using an intuitive interface

Downloads

104

Readme

Merl

Effortlessly generate and manage type-safe URLs for your web applications.

npm version
License
Downloads

Overview

merl is a lightweight utility that simplifies URL generation and ensures type safety in your JavaScript/TypeScript applications. Define your URL patterns once, and let merl handle dynamic segments and query parameters, reducing errors and improving code clarity.


Features

  • 🛠 Type-Safe URL Generation: Compile-time safety for dynamic and query parameters.
  • 🚀 Simple API: Easy-to-use chaining for building nested routes.
  • Lightweight and Fast: Minimal overhead for modern web applications.
  • 🔒 Error Prevention: Guards against invalid routes or missing parameters.

Installation

Install merl via npm or yarn:

npm install merl

or

yarn add merl

Usage

Step 1: Define Your URL Patterns

import merl from 'merl';

// Declare all your routes
const urls = [
  'products/:productId/reviews/:reviewId',
  'categories/:categoryId/items',
  '/about',
  '/search',
] as const;

// Compile URL patterns
const pathBuilder = merl.compile(urls);

Step 2: Generate Dynamic URLs

// Example: Product Review URL
const productReviewUrl = pathBuilder.products
  .using('42') // Replace :productId with '42'
  .reviews.using('7') // Replace :reviewId with '7'
  .url();

console.log(productReviewUrl); // Output: /products/42/reviews/7

Step 3: Add Query Parameters

const categoryItemsUrl = pathBuilder.categories
  .using('electronics') // Replace :categoryId with 'electronics'
  .items.url({ sort: 'asc', page: 2 });

console.log(categoryItemsUrl); // Output: /categories/electronics/items?sort=asc&page=2

Step 4: Access Static URLs

const aboutUrl = pathBuilder.about.url();
console.log(aboutUrl); // Output: /about

const searchUrl = pathBuilder.search.url({ q: 'laptops' });
console.log(searchUrl); // Output: /search?q=laptops

Advanced Usage

Nested Routes

Chain .using() calls to handle deeply nested routes.

const nestedUrl = pathBuilder.products
  .using('99')
  .reviews.using('12')
  .url({ highlight: true });

console.log(nestedUrl); // Output: /products/99/reviews/12?highlight=true

Error Handling

merl prevents incorrect usage at compile-time in TypeScript.

// TypeScript error: Missing :productId
// const invalidUrl = pathBuilder.products.url();

// Correct usage:
const validUrl = pathBuilder.products.using('10').reviews.using('5').url();
console.log(validUrl); // Output: /products/10/reviews/5

API Reference

m.compile(routes: readonly string[])

Compiles a list of URL patterns into a type-safe pathBuilder object.

  • routes: An array of URL strings (e.g., 'path/:dynamicSegment').

Dynamic Segments

Use .using(value) to replace dynamic segments (e.g., :productId).

Query Parameters

Add query parameters with .url(query):

  • query: An object where keys are parameter names and values are strings or numbers.

Why Merl?

  • 🚦 Eliminates Runtime Errors: Type-checking ensures your URLs are always valid.
  • 📚 Readable Code: Focus on route logic instead of manual string concatenation.
  • 🧹 Maintainability: Centralize your route definitions in a single place.

License

This project is licensed under the MIT License. See the LICENSE file for details.


Links