Skip to content

adrijere/deno-qs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

deno-qs

(CI tests on Linux)

Usage

A querystring parser with Deno based on querystring in NodeJS.

The querystring module provides utilities for parsing and formatting URL query strings. It can be accessed using:

import { qs } from "https://deno.land/x/qs/mod.ts";

const query = "a=b&foo=bar";
const json = { a: "b", foo: "bar" };

console.log(JSON.stringify(qs.parse(query)) == JSON.stringify(json)); // true

Run tests

deno test test.ts

Issues

For any bug reports or feature requests please post an issue on GitHub

Author

Jérémy Mathon Follow on GitHub

Matthieu Dumont Follow on GitHub

About

A querystring parser with Deno

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published