
Security News
Safari 18.4 Ships 3 New JavaScript Features from the TC39 Pipeline
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.
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
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
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.
Research
Security News
The Socket Research Team investigates a malicious Python package that enables automated credit card fraud on WooCommerce stores by abusing real checkout and payment flows.
Security News
Python has adopted a standardized lock file format to improve reproducibility, security, and tool interoperability across the packaging ecosystem.