
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
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.
joplin-plugin-cli
Advanced tools
A cli for joplin plugins, supports creating and packaging plugins, uses esbuild for the core, it's very **fast**.
A cli for joplin plugins, supports creating and packaging plugins, uses esbuild for the core, it's very fast.
npm i -g joplin-plugin-cli ## install
jpl generate --name test-plugin # Generate the project
cd test-plugin
yarn build # build
Why not use the official plugin template project?
The front-end packaging tools have changed a lot lately, mainly due to the performance revolution caused by esbuild and swc (that's not an overstatement). vue authors abandoned webpack and built a new cross-framework tool called vite based on esbuild and rollup, so I also prefer to build faster tools based on esbuild.
The official plugin template project takes about 3.87s to build using webpack, while this cli takes only 0.17s based on esbuild.
install dependencies
yarn add -D joplin-plugin-api joplin-plugin-cli
Remove the dist/prepare/update
command from package.json and add the dev/build
command
{
"scripts": {
"build": "jpl build",
"dev": "jpl build -w"
}
}
Run the build command
yarn build
replace all import joplin from 'api'
with import joplin from 'joplin-plugin-api'
in the code
Delete the api
directory, webpack.config.js
FAQs
A cli for joplin plugins, supports creating and packaging plugins, uses esbuild for the core, it's very **fast**.
We found that joplin-plugin-cli 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
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.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.