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.
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**.
The npm package joplin-plugin-cli receives a total of 6 weekly downloads. As such, joplin-plugin-cli popularity was classified as not popular.
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
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.