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 🙏

© 2024 – Pkg Stats / Ryan Hefner

anye

v2.0.2

Published

Server-agnostic named URL builder for node.js

Downloads

18

Readme

anyè

NPM version Build Status Dependency Status Downloads counter

Server-agnostic named URL builder for node.js


Getting started

Install the module with: npm install anye

Usage

Require module.

var Anye = require( "anye" );

Store/set an URL

Signature

Anye.set( sName, sURL );
Arguments
  • sName is the key to store the URL
  • sURL is the URL to store. It can have named-parameters beginning by :, like in /url/:id.

Note: the set method returns the stored URL, so you can use it directly in your route definition like in express: app.post( Anye.set( "name", "/url/:id" ), routeHandler );

Aliases

Anye.store()

Example

Anye.set( "name", "/url/:id" ); // will returns "/url/:id"

Retrieve/get/build an URL

Signature

Anye.get( sName, oParams, bDecode )
Arguments
  • sName is the key of the URL in the store.
  • oParams is an hash of parameters for the URL, replacing the :variable in the stored URL. All the additonal parameters will be added to the query string of the URL. Array & Object are supported.
  • bDecode is a flag to ensure the returned URL is URL-decoded. false by default.

Note: if a parameter of the URL is not given, anyè will throws.

Update: since version 0.3.0, all the returned URLs are URL-encoded by default.

Aliases

Anye.retrieve(), Anye.build()

Example

Anye.get( "name", { id: 2 } ); // will returns "/url/2"
Anye.get( "name", { id: "bar^" } ); // will returns "/url/bar%5E"
Anye.get( "name", { id: "bar^" }, true ); // will returns "/url/bar^"
Anye.get( "name", { id: 2, foo: "bar", bar: "baz" } ); // will returns "/url/2?foo=bar&bar=baz"
Anye.get( "name", { id: 2, foo: "bar", bar: { baz: "bar", zab: "baz" } } ); // will returns "/url/2?foo=bar&bar%5Bbaz%5D=bar&bar%5Bzab%5D=baz"

Generate an URL

Signature

Anye.generate( sURL, oParams, bDecode )
Arguments
  • sURL is the URL to use. It can have named-parameters beginning by :, like in /url/:id.
  • oParams is an hash of parameters for the URL, replacing the :variable in the stored URL. All the additonal parameters will be added to the query string of the URL. Array & Object are supported.
  • bDecode is a flag to ensure the returned URL is URL-decoded. false by default.

Note: if a parameter of the URL is not given, anyè will throws.

Example

Anye.generate( "/url/:id", { id: 2 } ); // will returns "/url/2"
Anye.generate( "/url/:id", { id: "bar^" } ); // will returns "/url/bar%5E"
Anye.generate( "/url/:id", { id: "bar^" }, true ); // will returns "/url/bar^"
Anye.generate( "/url/:id", { id: 2, foo: "bar", bar: "baz" } ); // will returns "/url/2?foo=bar&bar=baz"
Anye.generate( "/url/:id", { id: 2, foo: "bar", bar: { baz: "bar", zab: "baz" } } ); // will returns "/url/2?foo=bar&bar%5Bbaz%5D=bar&bar%5Bzab%5D=baz"

Get the raw URL

Signature

Anye.raw( sName )
Arguments
  • sName is the key of the URL in the store.

Note: if a parameter of the URL is not given, anyè will throws.

Update: since version 0.3.0, all the returned URLs are URL-encoded by default.

Aliases

Anye.url()

Example

Anye.raw( "name"); // will returns "/url/:id"

Clear the store

Signature

Anye.clear()

Example

Anye.get( "name", { id: 2 } ); // will returns "/url/2"
Anye.clear();
Anye.get( "name", { id: 2 } ); // throws Error

Get all the store

Signature

Anye.all()

Example

Anye.all(); // will returns { "name": "/url/:id" }

Count the urls in the store

Signature

Anye.count()

Example

Anye.count(); // will returns 1

Contributing

In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using Grunt.

Release History

  • 2019-04-01: version 2.0.0, Export as cjs and esm modules, minimal support in node 10.0
  • 2016-01-11: version 1.0.0, Use ES2015 for source, add count method.
  • 2015-12-06: version 0.6.1, update minimal runtime version.
  • 2015-12-06: version 0.6.0, add all method.
  • 2015-09-11: version 0.5.0, add raw method.
  • 2014-10-07: version 0.4.0, add aliases, add generate method.
  • 2014-10-06: version 0.3.0, returned URLs are encoded by default.
  • 2014-10-06: version 0.2.0, add query-string population with additional parameters.
  • 2014-10-05: version 0.1.0, initial release.

License

Copyright (c) 2014 leny Licensed under the MIT license.