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

@enterwell/url-helper

v1.0.1

Published

Url parts helper for GET params (or fragment params) manipulation.

Downloads

9

Readme

Enterwell's UrlHelper is used for manipulating url GET params (or fragment params - like GET but only in fragment part of url - after '#' sign).

Installation

In order to install this package you have to be logged in to npm with enterwell account and then just execute command(s):

yarn add @enterwell/url-helper

or with npm

npm install @enterwell/url-helper

Usage

Import UrlHelper just as any npm package:

import UrlHelper from '@enterwell/url-helper';

Configuration

Constructor of the UrlHelper class receives two bool parameters - useFragment and useStrict.

useFragment - Flag used to mark that url fragment is used to store params. Default value is false so GET params are used by default.

useStrict - Flag used to instantiate url helper in strict mode (or not). When it is in strict mode all non-json values (params that have values that cannot be parsed using JSON.decode) are not loaded. If not in strict mode those valued are assumed to be strings and loaded that way.

Example:

// Init url helper to work with GET url params.
const urlGetParamsHelper = new UrlHelper();

// Init url helper to work with fragment params (after '#' sign)
const urlFragmentParamsHelper = new UrlHelper(true);

API methods

getUrlParams(): object

This method returns object with all url params found on current page (page URL). Object keys are param variable names and object values are param values. If there is no URL params this method returns empt object.

getParamValue( paramName: string ): any

Method returns single param value. Param name to get value for is passed as argument and param value is returned from this method.

addOrUpdateParam( paramName: string, paramValue: any )

Method is used to add (or update) param value for param identified by param name. Param value is serialized using JSON.stringify and encoded using uriEncode.

Code usage

Few examples of using this helper:

// Let's say current url is https://enterwell.space
import UrlHelper from '@enterwell/url-helper';

// Init url helper with GET params
const urlHelper = new UrlHelper();

// Get url params
console.log(urlHelper.getUrlParams()) // Outputs {} since there is no url params

// Add foo param with bar value
urlHelper.addOrUpdateParam('foo', 'bar');
// URL is now: https://enterwell.space?foo=bar

// Add new param
urlHelper.addOrUpdateParam('obj', { foo: 'bar '});
// URL: https://enterwell.space?foo=bar&obj=%7B%22foo%22:%22bar%20%22%7D

// Update existing param
urlHelper.addOrUpdateParam('obj', 3);
// URL: https://enterwell.space?foo=bar&obj=3

// Show all params
console.log(urlHelper.getUrlParams()); // Outputs { foo: 'bar', obj: '3' }

// Unset param
urlHelper.addOrUpdateParam('foo', '');
// URL: https://enterwell.space?obj=3