Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
babel-plugin-object-to-json-parse
Advanced tools
![release](https://github.com/nissy-dev/babel-plugin-remove-react-fc-and-vfc/actions/workflows/release.yml/badge.svg) [![License: MIT](https://img.shields.io/github/license/nd-02110114/babel-plugin-object-to-json-parse.svg)](https://opensource.org/license
This repository is inspired by this article
As long as the JSON string is only evaluated once, the JSON.parse approach is much faster compared to the JavaScript object literal, especially for cold loads.
This plugin converts from object literal to JSON.parse
// before
const data = { foo: 42, bar: 1337 };
// after
const data = JSON.parse('{"foo":42,"bar":1337}');
$ npm install babel-plugin-object-to-json-parse -D
or
$ yarn add babel-plugin-object-to-json-parse -D
.babelrc
{
"plugins": ["object-to-json-parse"]
}
minJSONStringSize
(number
, defaults to 1024
)The minJSONStringSize
option will prevent the plugin from replacing an expression if the length of the JSON string given to JSON.parse
is smaller than minJSONStringSize
. For example, the following ensures all replacements have a string size of at least 1kb.
{
"plugins": [
["object-to-json-parse", {
"minJSONStringSize": 1024
}]
]
}
I just made this plugin for my understanding about AST and babel plugin.
I decided not to support partially JSON expression like below.
Partially JSON expressions such as [notValid, {isValid:true}] ensuring {isValid:true} is transformed.
const data = { bar: invalid_object, foo: 'foo' }
↓
const data = { bar: invalid_object, JSON.parse('{"foo": "foo"}')}
This is because I think most large objects are not partially JSON expressions. JSON.parse() is much faster in the case that object is 10 kB or larger. Converting small object to JSON.parse expression is not meaningful.
I don't care about some backwards compatibilities like this issue.
Any contributions are welcomed from everyone!!
$ git clone git@github.com:nissy-dev/babel-plugin-object-to-json-parse.git
$ cd babel-plugin-object-to-json-parse
$ yarn install
// build
$ yarn build
// test
$ yarn test
FAQs
![release](https://github.com/nissy-dev/babel-plugin-remove-react-fc-and-vfc/actions/workflows/release.yml/badge.svg) [![License: MIT](https://img.shields.io/github/license/nd-02110114/babel-plugin-object-to-json-parse.svg)](https://opensource.org/license
The npm package babel-plugin-object-to-json-parse receives a total of 1,355 weekly downloads. As such, babel-plugin-object-to-json-parse popularity was classified as popular.
We found that babel-plugin-object-to-json-parse 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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.