Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
angular-query-params
Advanced tools
An AngularJS service that wraps $location.search with own, simple methods
You can choose your preferred method of installation:
bower install angular-query-params --save
npm install angular-query-params --save
Include angular-query-params.js in your application.
<script src="components/angular-query-params/dist/angular-query-params.js"></script>
Add the module angularQueryParams
as a dependency to your module:
angular.module('myApp', ['angularQueryParams']);
// Inject angularQueryParams into your controller (or service, etc..)
angular.module('myApp').controller('MyCtrl', function(queryParams) {
});
Add a query parameter to the url Always set value of a key
queryParams.set('key', 'value'); // => ?key=value
queryParams.set('key', ['value1', 'value2']); // => ?key=value1&key=value2
Get a query parameter from the url Always set value of a key
queryParams.get('key'); // ?key=value => 'value'
queryParams.set('key2'); // ?key=value => undefined
Remove a query parameter from the url
queryParams.remove('key', 'value'); // ?key=value&key2=value2 => ?key2=value2 , ?key=value&key=value2 => ?key=value
queryParams.remove('key', ['value1', 'value2']); // ?key=value1&key=value2&key=value3 => ?key=value3
Push a query parameter to the url Add a value to a key
queryParams.push('key', 'value'); // => ?key=value
queryParams.push('key', 'value2'); // ?key=value => ?key=value1&key=value2
Is a parameter set at the url (with a value)
queryParams.has('key'); // ?key=value => true
queryParams.has('key2'); // ?key=value => false
queryParams.has('key', 'value'); // ?key=value => true
queryParams.has('key', 'value2'); // ?key=value => false
Released under the terms of the MIT License.
FAQs
-----------
The npm package angular-query-params receives a total of 3 weekly downloads. As such, angular-query-params popularity was classified as not popular.
We found that angular-query-params 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
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.