Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
json-to-jsdoc-converter
Advanced tools
```javascript import { JsonToJsdocConverter } from "json-to-jsdoc-converter"; ```
import { JsonToJsdocConverter } from "json-to-jsdoc-converter";
const converter = new JsonToJsdocConverter();
{
"id": 1,
"name": "Super Mario",
"age": null,
"cars": [
"honda",
"bmw"
],
"structure": {
"logo": ""
},
"level1": {
"alias": "testLevel",
"level2": {
"score": 12,
"item": {},
"level3": null
}
}
}
const json = JSON.stringify(jsonMock1);
const jsDoc = converter.convert(json, { typesPrefix: "", typesSuffix: "Type" }); //you can set type name rules by passing optional config
/**
* @typedef Type
* @property {number} id
* @property {string} name
* @property {any} [age]
* @property {string[]} cars
* @property {StructureType} structure
* @property {Level1Type} level1
*/
/**
* @typedef StructureType
* @property {string} logo
*/
/**
* @typedef Level1Type
* @property {string} alias
* @property {Level1Level2Type} level2
*/
/**
* @typedef Level1Level2Type
* @property {number} score
* @property {object} item
* @property {any} [level3]
*/
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.
FAQs
```javascript import { JsonToJsdocConverter } from "json-to-jsdoc-converter"; ```
The npm package json-to-jsdoc-converter receives a total of 2 weekly downloads. As such, json-to-jsdoc-converter popularity was classified as not popular.
We found that json-to-jsdoc-converter 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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.