
Security News
TypeScript is Porting Its Compiler to Go for 10x Faster Builds
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
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 67 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.
Security News
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.