
Security News
OWASP 2025 Top 10 Adds Software Supply Chain Failures, Ranked Top Community Concern
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.
@kintone/plugin-packer
Advanced tools
kintone plugin package.sh in JavaScript
It's written in pure JavaScript, so
manifest.json with JSON Schema$ npm install -g @kintone/plugin-packer
$ kintone-plugin-packer [OPTIONS] PLUGIN_DIR
--ppk PPK_FILE: The path of input private key file. If omitted, it is generated automatically into <Plugin ID>.ppk in the same directory of PLUGIN_DIR or --out if specified.--out PLUGIN_FILE: The path of generated plugin file. The default is plugin.zip in the same directory of PLUGIN_DIR.--watch, -w: Watch PLUGIN_DIR for the changes.npm runIf your private key is ./private.ppk and the plugin directory is ./plugin, edit package.json:
{
"scripts": {
"package": "kintone-plugin-packer --ppk private.ppk plugin"
}
}
and then
$ npm run package
const packer = require("@kintone/plugin-packer");
const fs = require("fs");
const buffer = createContentsZipBufferInYourSelf();
packer(buffer).then((output) => {
console.log(output.id);
fs.writeFileSync("./private.ppk", output.privateKey);
fs.writeFileSync("./plugin.zip", output.plugin);
});
MIT License
FAQs
Package your kintone plugin with pure JavaScript
The npm package @kintone/plugin-packer receives a total of 2,818 weekly downloads. As such, @kintone/plugin-packer popularity was classified as popular.
We found that @kintone/plugin-packer demonstrated a healthy version release cadence and project activity because the last version was released less than 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
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.