qs-lite
TypeScript icon, indicating that this package has built-in type declarations

1.0.0 • Public • Published

qs-lite

Node.js CI npm version gzip size

Lightweight querystring parse() & stringify() at less than 1KB minified

SYNOPSIS

import * as qs from "qs-lite";

const string = qs.stringify({foo: "bar", hoge: "pomu"}); // => "foo=bar&hoge=pomu"

const object = qs.parse("foo=bar&hoge=pomu"); // => { "foo": "bar", "hoge": "pomu" }

CommonJS

const qs = require("qs-lite");

const string = qs.stringify({foo: "bar", hoge: "pomu"}); // => "foo=bar&hoge=pomu"

const object = qs.parse("foo=bar&hoge=pomu"); // => { "foo": "bar", "hoge": "pomu" }

Browser

<script src="https://cdn.jsdelivr.net/npm/qs-lite/dist/qs-lite.min.js"></script>
<script>
  const string = qs.stringify({foo: "bar", hoge: "pomu"}); // => "foo=bar&hoge=pomu"

  const object = qs.parse("foo=bar&hoge=pomu"); // => { "foo": "bar", "hoge": "pomu" }
</script>

TypeScript

Repository

Documentation

See also

BSD License

Copyright (c) 2015-2024, Yusuke Kawasaki All rights reserved.

Readme

Keywords

Package Sidebar

Install

npm i qs-lite

Weekly Downloads

374

Version

1.0.0

License

BSD

Unpacked Size

9.32 kB

Total Files

8

Last publish

Collaborators

  • kawanet