Socket
Socket
Sign inDemoInstall

parseqs

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

parseqs

Provides methods for parsing a query string into an object, and vice versa.


Version published
Weekly downloads
1.9M
increased by3.27%
Maintainers
1
Weekly downloads
 
Created

What is parseqs?

The parseqs npm package is a simple utility for parsing and stringifying query strings. It provides basic functionality to convert query strings into JavaScript objects and vice versa.

What are parseqs's main functionalities?

Parse Query String

This feature allows you to parse a query string into a JavaScript object. The `decode` method takes a query string as input and returns an object with key-value pairs.

const parseqs = require('parseqs');
const queryString = 'name=John&age=30';
const parsed = parseqs.decode(queryString);
console.log(parsed); // { name: 'John', age: '30' }

Stringify Object to Query String

This feature allows you to convert a JavaScript object into a query string. The `encode` method takes an object as input and returns a query string.

const parseqs = require('parseqs');
const obj = { name: 'John', age: '30' };
const queryString = parseqs.encode(obj);
console.log(queryString); // 'name=John&age=30'

Other packages similar to parseqs

FAQs

Package last updated on 27 Oct 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc