1.0.22 • Published 1 month ago

validation-query v1.0.22

Weekly downloads
-
License
ISC
Repository
-
Last release
1 month ago

Validation Query Validation Query is a utility library providing a range of functions for managing query strings in web applications. It offers features for validating, decoding, and parsing query string parameters, as well as inspecting the current environment and extracting the search query from the URL.

Installation You can install the package using npm or yarn:

npm install validation-query

or

yarn add validation-query

Usage Import the desired functions from the package:

import { validateParams, toQueryString, parseBoolean, isClient, getSearchQuery } from 'validation-query';

Functions 1. validateParams Validates query string parameters by removing any keys with falsy values.

import { validateParams } from 'validation-query';

const validParams = validateParams({ foo: 'bar', abc: '', def: null });
// { foo: 'bar' }
  1. toQueryString Decodes query string values by removing any keys with falsy values and decoding the resulting query string.

    import { toQueryString } from 'validation-query';
    
    const decodedQueryString = toQueryString({ foo: 'bar', abc: 'xyz' });
    // 'foo=bar&abc=xyz'
  2. parseBoolean Parses boolean values from query strings. It returns true for any non-falsy string value, and false for falsy string values (case-insensitive "f", "false", "n", "no", and "0").

    import { parseBoolean } from 'validation-query';
    
    const isTrue = parseBoolean('true'); // true
    const isFalse = parseBoolean('false'); // false
  3. isClient Checks if the current environment is a client-side environment (browser).

    import { isClient } from 'validation-query';
    
    if (isClient()) {
      // Client-side code
    } else {
      // Server-side code
    }
  4. getSearchQuery Retrieves the search query from the current URL and parses it using the query-string library. It accepts options for configuring the parsing behavior.

    import { getSearchQuery } from 'validation-query';

const URL = "?foo=bar&abc=xyz&isSort=true&categoryId=1,2,3" const searchQuery = getSearchQuery({ parseNumbers: true , parseBooleans: true , arrayFormat:"comma" }); // {foo: "bar", abc:"xyz", isSort:true, categoryId: 1,2,3}

**Support**
If you encounter any issues or have questions, please feel free to reach out to us at garmabi.mohammad73@gmail.com.
1.0.22

1 month ago

1.0.21

1 month ago

1.0.19

1 month ago

1.0.18

1 month ago

1.0.17

1 month ago

1.0.16

1 month ago

1.0.20

1 month ago

1.0.15

1 month ago

1.0.14

1 month ago

1.0.11

2 months ago

1.0.13

2 months ago

1.0.12

2 months ago

1.0.10

2 months ago

1.0.9

2 months ago

1.0.8

2 months ago

1.0.7

2 months ago

1.0.6

2 months ago

1.0.5

2 months ago

1.0.3

2 months ago

1.0.2

2 months ago

1.0.1

2 months ago

1.0.0

2 months ago