{"id":15394995,"url":"https://github.com/goto-bus-stop/qs-stringify","last_synced_at":"2025-04-06T06:12:53.208Z","repository":{"id":25189857,"uuid":"103400960","full_name":"goto-bus-stop/qs-stringify","owner":"goto-bus-stop","description":"Simple query stringify with nesting, ~200b gzipped.","archived":false,"fork":false,"pushed_at":"2025-02-06T09:41:58.000Z","size":131,"stargazers_count":20,"open_issues_count":1,"forks_count":4,"subscribers_count":2,"default_branch":"default","last_synced_at":"2025-03-30T05:07:55.862Z","etag":null,"topics":["querystring"],"latest_commit_sha":null,"homepage":"https://npmjs.com/package/qs-stringify","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/goto-bus-stop.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-09-13T13:07:31.000Z","updated_at":"2025-02-06T09:10:23.000Z","dependencies_parsed_at":"2024-06-18T15:35:32.303Z","dependency_job_id":"24c20393-cc2b-4c4b-b769-5a3a6b0534f4","html_url":"https://github.com/goto-bus-stop/qs-stringify","commit_stats":{"total_commits":37,"total_committers":3,"mean_commits":"12.333333333333334","dds":"0.29729729729729726","last_synced_commit":"efef802474c066750e8cad4d814683cfead27e00"},"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/goto-bus-stop%2Fqs-stringify","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/goto-bus-stop%2Fqs-stringify/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/goto-bus-stop%2Fqs-stringify/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/goto-bus-stop%2Fqs-stringify/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/goto-bus-stop","download_url":"https://codeload.github.com/goto-bus-stop/qs-stringify/tar.gz/refs/heads/default","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247441060,"owners_count":20939239,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["querystring"],"created_at":"2024-10-01T15:25:16.681Z","updated_at":"2025-04-06T06:12:53.176Z","avatar_url":"https://github.com/goto-bus-stop.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# qs-stringify\n\nSimple query stringify with nesting.\n\n[![npm][npm-image]][npm-url]\n[![github][github-image]][github-url]\n[![standard][standard-image]][standard-url]\n\n[npm-image]: https://img.shields.io/npm/v/qs-stringify.svg?style=flat-square\n[npm-url]: https://www.npmjs.com/package/qs-stringify\n[github-image]: https://github.com/goto-bus-stop/qs-stringify/workflows/Node%20CI/badge.svg\n[github-url]: https://github.com/goto-bus-stop/qs-stringify/actions\n[standard-image]: https://img.shields.io/badge/code%20style-standard-brightgreen.svg?style=flat-square\n[standard-url]: http://npm.im/standard\n\n## Install\n\n```\nnpm install qs-stringify\n```\n\n## Usage\n\n```js\nvar stringify = require('qs-stringify')\n\nstringify({\n  page: {\n    offset: 50,\n    limit: 25\n  },\n  filter: 'hello world'\n})\n// → \"page[offset]=50\u0026page[limit]=25\u0026filter=hello%20world\"\n```\n\nThis module expects that you know the shape of the query string you want to print, and only does trivial serialization of strings, numbers, and nested objects.\nIf you want to use other types or do custom serialization, fit them into a supported shape first:\n\n```js\nvar stringify = require('qs-stringify')\n\nvar startAt = new Date()\nvar filterTags = ['work', 'home']\n\nstringify({\n  tags: filterTags.join(','),\n  startAt: startAt.toISOString(),\n})\n// → \"tags=work,home\u0026startAt=2024-10-15T20%3A22%3A36.883Z\"\n```\n\n## License\n\n[MIT](LICENSE.md)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgoto-bus-stop%2Fqs-stringify","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgoto-bus-stop%2Fqs-stringify","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgoto-bus-stop%2Fqs-stringify/lists"}