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.
enonic-wizardry
Advanced tools
Functional utility library for Enonic XP
xml-to-ts.js
is a command line utility that can generate TypeScript interfaces
for Sites, ContentTypes, Parts, and Pages from XML-files.
npm run build
or npm run build:cli
node bin/xml-to-ts.js my-xml-file.xml
xml-to-ts.js
can be run automatically as part of theenonic project deploy
process. First, add the dependency with npm install enonic-wizardry
, and then
add a task to build.gradle
, for example:
task generateTypeScriptInterfaces( type: NodeTask, dependsOn: npmInstall ) {
description = 'Generate TypeScript interfaces'
environment = [ 'NODE_ENV': nodeEnvironment() ]
args = [ '--project', '.', '--write-to-file' ]
script = file( 'node_modules/enonic-wizardry/bin/xml-to-ts.js' )
}
To run the task as part of the deploy process, add it to the jar
block:
jar {
// ... other dependencies
generateTypeScriptInterfaces
// ...
}
FAQs
Functional utility library for Enonic XP
The npm package enonic-wizardry receives a total of 5 weekly downloads. As such, enonic-wizardry popularity was classified as not popular.
We found that enonic-wizardry demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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.