
Security News
MCP Community Begins Work on Official MCP Metaregistry
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
url-set-query
Advanced tools
Small standalone function to set a query string on a URL, replacing the existing query and leaving the hash in place.
var setQuery = require('url-set-query')
setQuery('http://foo.com/index.html?state=open', 'beep=true')
//=> 'http://foo.com/index.html?beep=true'
setQuery('http://foo.com/some/path#about', '?foo=5&open=true')
//=> 'http://foo.com/some/path?foo=5&open=true#about'
setQuery('http://foo.com', 'foo=5')
//=> 'http://foo.com/?foo=5'
// clears the query
setQuery('http://foo.com/index.html?filter=closed#about', '?')
//=> 'http://foo.com/index.html#about'
npm install url-set-query --save
url = setQuery(url, [query])
Appends the given query
String onto the URL, before the hash. If a query already exists, it will be replaced. Returns the new URL.
If query
is '?'
, it is the same as clearing the query string from the url
.
If query
is an empty string or undefined, no change will be made to url
.
To encode/decode from an object, see one of:
MIT, see LICENSE.md for details.
FAQs
small function to append a query string to a URL
The npm package url-set-query receives a total of 337,621 weekly downloads. As such, url-set-query popularity was classified as popular.
We found that url-set-query demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
Research
Security News
Socket uncovers an npm Trojan stealing crypto wallets and BullX credentials via obfuscated code and Telegram exfiltration.
Research
Security News
Malicious npm packages posing as developer tools target macOS Cursor IDE users, stealing credentials and modifying files to gain persistent backdoor access.