Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@conflux-dev/jsdoc-tsimport-plugin
Advanced tools
A JSDoc plugin to support the typescript module import syntax.
A JSDoc plugin to support the Typescript import syntax.
A workaround to VSCode and WebStorm not supporting JSDoc typedef imports.
What JSDocs expects:
/**
* @type {module:path/to/module~MyTypeDefName}
*/
What VSCode expects (as well as Webstorm to a limited degree):
/**
* @type {typeof import("./path/to/module").MyTypeDefName}
*/
This plugin adds hooks to JSDoc that translates the VSCode supported syntax into the JSDoc supported syntax.
This allows you to create typedef doclets in a file that can be shared. Just use the typescript-style imports within your doc comments, and then the plugin will translate when you build your jsdocs. This is preferable to adding unused es6/commonjs imports to your code, which may cause unintended side-effects, or fail linting requirements.
To get started, first install this package with:
npm install --save-dev jsdoc-tsimport-plugin
Then in your jsdoc.conf.json
settings, add the plugin:
"plugins": [
"node_modules/jsdoc-tsimport-plugin/index.js"
]
Then, write your doc comment typedef import statements in the typescript style.
/// src/model.js
/** @file Model type definitions */
/** @module */
/**
* An address model.
*
* @typedef {object} Address
*
* @property {number} houseNumber The house number.
* @property {string} street The street.
* @property {string} city The city.
* @property {string} state The state.
* @property {number} zip The zip.
*/
/// src/addressView.js
/** @typedef {import('./model.js').Address} Address
If everything is working, when you run jsdoc
you should get a linkable definition for your type.
Example:
Name | Type | Description |
---|---|---|
shippingAddress | module:model~Address | The shipping address. |
If you're using ESLint, we recommend turning the built-in jsdoc validation off (it's deprecated anyway), and using eslint-plugin-jsdoc. And then set your jsdoc style to 'typescript'.
.eslintrc.json
{
"extends": [
"plugin:jsdoc/recommended"
],
"plugins": ["jsdoc"],
"rules": {
"valid-jsdoc": "off"
},
"settings": {
"jsdoc": {
"mode": "typescript"
}
}
}
This will take into account @module
tags, multiple source directories, and complex paths.
For example:
/// src/path/a/model.js
/** @module call/me/ishmael */
/**
* Another type definition.
*
* @typedef {object} MyType
* @property {number} foo
*/
/// src/path/b/view.js
/**
* @param {import('../a/model').MyType} data
*/
function show(data) {}
In that example the import('../a/model').MyType
will be replaced in jsdoc with module:call/me/ishmael~MyType
.
In Webstorm, the Typescript import syntax is only partially supported. It will not type hint for local files this way. However, the JSDoc module syntax is entirely unsupported and shows error markers, so this is still an improvement.
This references the issues:
FAQs
A JSDoc plugin to support the typescript module import syntax.
We found that @conflux-dev/jsdoc-tsimport-plugin demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers 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’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.