
Security News
NVD Quietly Sweeps 100K+ CVEs Into a “Deferred” Black Hole
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
The json2mq npm package is a utility for converting JSON objects into media query strings. This can be particularly useful when working with responsive design in JavaScript, where you might need to generate media queries dynamically based on certain conditions or configurations.
Convert JSON to media query string
This feature allows you to pass a JSON object representing the media query parameters and outputs a media query string. For example, the JSON object `{screen: true, minWidth: 100, maxWidth: 300}` would be converted to the string `'screen and (min-width: 100px) and (max-width: 300px)'`.
json2mq({screen: true, minWidth: 100, maxWidth: 300})
This package is used for parsing and serializing CSS media queries. It is similar to json2mq in that it deals with media queries but offers parsing capabilities in addition to serialization, which json2mq does not.
Although not a direct alternative to json2mq, enquire.js allows you to programmatically listen to media queries and act on them in JavaScript. It provides a higher-level API compared to json2mq, which is focused solely on converting JSON to media query strings.
This package is similar to json2mq in that it is used in the context of media queries. It is designed to evaluate whether a given media query matches the current state of the document. Unlike json2mq, it does not convert JSON to media queries but rather evaluates them.
json2mq is used to generate media query string from JSON or javascript object.
npm install json2mq
var json2mq = require('json2mq');
json2mq({minWidth: 100, maxWidth: 200});
// -> '(min-width: 100px) and (max-width: 200px)'
json2mq({screen: true}); // -> 'screen'
json2mq({handheld: false}); // -> 'not handheld'
json2mq({minWidth: 100, maxWidth: 200});
// -> '(min-width: 100px) and (max-width: 200px)'
json2mq({minWidth: 100, maxWidth: '20em'});
// -> '(min-width: 100px) and (max-width: 20em)'
json2mq([{screen: true, minWidth: 100}, {handheld: true, orientation: 'landscape'}]);
// -> 'screen and (min-width: 100px), handheld and (orientation: landscape)'
FAQs
Generate media query string from JSON or javascript object
The npm package json2mq receives a total of 2,185,500 weekly downloads. As such, json2mq popularity was classified as popular.
We found that json2mq 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
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
Research
Security News
Lazarus-linked threat actors expand their npm malware campaign with new RAT loaders, hex obfuscation, and over 5,600 downloads across 11 packages.
Security News
Safari 18.4 adds support for Iterator Helpers and two other TC39 JavaScript features, bringing full cross-browser coverage to key parts of the ECMAScript spec.