Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
esdoc-babel-plugin
Advanced tools
Simple esdoc plugin to run certain babel transformations on code before handing it to esdoc
This plugin will run code through a certain set of babel plugins before giving it back to esdoc. This can be used, for example, to remove certain syntax not supported by esdoc.
npm install --save-dev mhelvens/esdoc-babel-plugin
Make sure you also install babel-core
(version 6 or higher) and
the babel plugins you want to use. For example:
npm install --save-dev babel-core babel-plugin-angular2-annotations babel-plugin-transform-decorators-legacy babel-plugin-transform-flow-strip-types
Configure esdoc to use this plugin, and specify the set of babel plugins you wish to run,
in .esdoc.json
:
{
// ...
"plugins": [
// ...
{
"name": "esdoc-babel-plugin",
"option": {
"plugins": [
"angular2-annotations",
"transform-decorators-legacy",
"transform-flow-strip-types"
]
}
}
]
}
Note that the "option"
object is passed directly to babel, so it supports all options
that babel supports.
Execute ESDoc:
esdoc
MIT
Maintained by Michiel Helvensteijn.
Originally based on esdoc-flow-plugin
by Edgardo Avilés @eaviles.
FAQs
Simple esdoc plugin to run certain babel transformations on code before handing it to esdoc
The npm package esdoc-babel-plugin receives a total of 0 weekly downloads. As such, esdoc-babel-plugin popularity was classified as not popular.
We found that esdoc-babel-plugin 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
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.